Théo Galy-Fajou

Results 147 issues of Théo Galy-Fajou

When having a `contourf` and a `contour` overlapping the second contour levels overlap completely the previous contour. Even if they are previously specified : MWE: ```julia xrange = range(-4.0,4.0,length=100) X1...

Using @adjoint disable the overloading of `rrule` see : https://github.com/JuliaDiff/ChainRulesCore.jl/issues/239#issuecomment-713560336 It makes it impossible to define new rules for different metrics. I am aware that the long-term plan is to...

ChainRules

Here is a simple MWE: ```julia @doc """ MyModule """ module MyModule foo() = 2 end ``` When having the `@doc` macro, running `Execute Code in REPL` on `foo()` will...

bug

When CompatHelper is used for subdirs, e.g. `docs` or eventual `examples`, one wants to use the latest commit version of the current PR or of master/main from the parent repo/package....

feature request

It looks like the underlying `covm` and co are using it and this would possibly save some computation time for the `mean_and_cov` implementation.

Hi! Maybe I was simply unable to find it anywhere, but it seems there is no documentation on what is/are the arguments for the `callback` passed to `Options`. From the...

Hey! This issue is basically a revival of #685, I now have a clean implementation of the Polya-Gamma distribution in https://github.com/theogf/AugmentedGaussianProcesses.jl but I would be happy to move it to...

As pointed out in #1502 , `mgf` and `cf` should be allowed to take `Complex` numbers and the second argument should be therefore relaxed. All functions are also made type-stable....

The moment generating function is technically homomorphic in the complex space therefore restricting the input to be real does not make sense. Would a PR doing `t::Real` -> `t::Number` bet...

Calling `quantile(Poisson(), 1)` will return the following error ``` julia> quantile(Poisson(), 1) ERROR: InexactError: Int64(Inf) ... ``` It seems to be because of the following line: https://github.com/JuliaStats/Distributions.jl/blob/586625859ce234cccbc152f00e681e5657f8a56f/src/univariates.jl#L639