David Widmann

Results 196 issues of David Widmann

I just checked and it seems the same bug as described in https://github.com/ds4dm/Tulip.jl/pull/96 exists in this package as well.

With ProgressMeter, it is possible to [print additional information](https://github.com/timholy/ProgressMeter.jl#printing-additional-information). As far as I can see (please correct me if I'm wrong), in principle the old progress logging syntax would allow...

I think it would be good to check if FFTW_jll and MKL_jll are actually available before trying to load them, as suggested in https://github.com/JuliaMath/FFTW.jl/issues/274#issuecomment-1618774373. I ran into this issue with...

Note: This does not work yet --- I opened this PR to make it easier to debug (and possibly fix) issues with Enzyme. Currently, the following example does ~~not~~ work...

Fixes #861 as suggested in https://github.com/JuliaStats/StatsBase.jl/issues/861#issuecomment-1546263857 by making `PValue` and `TestStat` non-Real. Also adds tests for the issue (and other method ambiguities, unbound type parameters, ...) with Aqua: https://juliatesting.github.io/Aqua.jl/ ~~The...

This PR tries the suggestion in https://github.com/JuliaDiff/ChainRules.jl/pull/779#discussion_r1483664720 which apparently breaks some existing tests. I wonder what exactly is broken by these changes since the two-arg `similar` is quite standard and...

The following works as expected: ```julia julia> using OrdinaryDiffEq julia> prob = ODEProblem((_, _, t) -> -0.3*t, 1.0, (0.0, 5.0)) ODEProblem with uType Float64 and tType Float64. In-place: false timespan:...

A colleague asked me how to cite MultivariateStats.jl but I noticed that the repo does not contain a Citation.bib file (the concept is [explained here](https://julialang.org/research/#publications), an example can be found...

Currently, the return type of `quantile` etc. is inconsistent, in particular for discrete distributions. For many distributions (and in particular those for which we fall back to StatsFuns/Rmath) the return...

https://github.com/TuringLang/AdvancedHMC.jl/pull/332 broke the `AbstractMCMC.step` interface: It's not possible anymore to initialize the sampler, obtain the initial state, and then continue sampling with `AbstractMCMC.step`. The problem is https://github.com/TuringLang/AdvancedHMC.jl/blob/04ce92ab167df3c2a309e845911129d3a1d43aa7/src/abstractmcmc.jl#L161 It assumes that...