Simone Carlo Surace

Results 56 issues of Simone Carlo Surace

I'm trying to use Arrow to send data between a Julia (Arrows.jl) and a Rust (Polars) app. However, when I write a table containing Date, it is read by Polars...

I think several things about the tests here are suboptimal and potentially confusing, making them hard to maintain. - The directory/file structure in test/ does not match that of src/....

This was discovered and documented in #1568 via tests, but #1579 reverted those tests. I still think this is worth tracking: ```julia using Distributions, ForwardDiff using Distributions: digamma mydiffp(r, p,...

I noticed that the numerical fallback for `entropy` is currently commented out. Since there is a numerical integration procedure which works for `expectation`, I wonder whether this should be activated....

**Summary** This is an attempt to patch #458. Since this is probably some deeper Julia type inference issue, this solution is likely to be temporary. **Proposed changes** For now, I...

```julia using KernelFunctions using Test k = RBFKernel() + RBFKernel() * ExponentialKernel() @inferred k(0.1, 0.2) # ERROR @time k(0.1, 0.2) # 0.000009 seconds (5 allocations: 176 bytes) ``` but e.g....

I wanted to ask for an overview of the current state of GPU support of this package. It appears as though there are several issues related to whether the package...

I wonder why `PriorityQueue` does not wrap a `BinaryHeap` as one of its fields, but rather [implements](https://github.com/JuliaCollections/DataStructures.jl/blob/529a10d2580c029558a4d46b2c7fe69e68a6b9d3/src/priorityqueue.jl#L28-L29) a binary heap and associated methods from scratch. Would a refactoring make sense...

This unblocks the ChainRulesCore dependency constraint and allows TemporalGPs to be loaded alongside GPLikelihoods and the current version of AbstractGPs.

An error is thrown when differentiating a trace of a matrix division with a `PDMat`: ```julia using LinearAlgebra using PDMats using Zygote function kernel(x) return [1. x; x 1.] end...