David Widmann
David Widmann
This PR adds support for non-standard random number generators.
There are two reasons for this PR: - These are defined in ChainRules - Tests are broken on nightly (and apparently also on Julia 1.8-rc1, as [observed upstream](https://github.com/JuliaGaussianProcesses/ApproximateGPs.jl/issues/135)) that point...
Is the following intended? ```julia julia> using PyCall julia> x = rand(3); julia> PyObject(x) == PyObject(x) 3-element Vector{Bool}: 1 1 1 ``` In https://github.com/SciML/OrdinaryDiffEq.jl/issues/1402 a user reported an error that...
It seems #1766 introduced, possibly indirectly, massive test time regressions. For instance, the Turing-CI workflow with the previous commit on the master branch finished successfully in 1h 26mins (which still...
Currently, AD settings in Turing are defined on a global level and (partly) propagated to other packages in this way. This requires us to dispatch depending on the Turing specific...
In KernelFunctions.jl we use separate project environments for all examples. The examples are contained in directories `examples/first_example/`, `examples/second_example/` etc. It seems currently one has to add all directories to CompatHelper.yml...
For simple cases we can just differentiate through the DDE solver but if the DDE system contains parameter-dependent C1-discontinuities the forward sensitivities have jump discontinuities which, e.g., ForwardDiff can't deal...
Last week I had some discussion in a PR to Distributions about the design of `rand` (https://github.com/JuliaStats/Distributions.jl/pull/1262#issuecomment-764995042), and I think it applies to MeasureTheory as well. --- *TL;DR:* It is...
Follow-up to https://github.com/JuliaStats/StatsBase.jl/pull/714 that removes the deprecations introduced there and throws an error if empty collections are provided.
The current implementation seems wrong (see https://github.com/SciML/StochasticDelayDiffEq.jl/pull/35#discussion_r564026139). It seems it is not tested currently and hence a test should be added. What would be a simple example that fails currently?