Chad Scherrer
Chad Scherrer
@cscherrer it seems `SuperpositionMeasure` does not have a `rand` method: ```julia julia> μ = Dirichlet(10, 1.0) Dirichlet(α = Fill(1.0, 10),) julia> result = multipathfinder(μ, 1_000; nruns=20) ┌ Warning: Pareto shape...
Currently in [conditional.jl](https://github.com/cscherrer/MeasureTheory.jl/blob/f4f83851f0abcf554a4b0403d1e29943092547a8/src/combinators/conditional.jl) we have ```julia using NestedTuples: lazymerge struct ConditionalMeasure{M,C}
@keorn pointed out that in Distributions, `*` and `+` behave like this: ```julia julia> 3 * Dists.Normal() Distributions.LocationScale{Float64, Distributions.Continuous, Distributions.Normal{Float64}}( μ: 0.0 σ: 3.0 ρ: Distributions.Normal{Float64}(μ=0.0, σ=1.0) ) julia> 3...
The current MeasureTheory/MeasureBase partitioning is kind of ad hoc. What we really need is for MeasureBase to contain only 1. Whatever is needed for defining new measures 2. Anything else...
Today @oschulz showed me this code: https://github.com/bat/BAT.jl/blob/master/src/rngs/rng_init.jl He suggested this could be split into a new package. If this happens, we should consider switching to it for reproducible RNGs for...
> It's not necessary to compute it if you don't call `rand` or `logpdf` shrug > > One approach that doesn't touch the structure of `FiniteGP` would be to add...
> @cscherrer It seems some recent changes of Soss/MeasureTheory broke the tests: https://github.com/JuliaGaussianProcesses/AbstractGPs.jl/pull/206/checks?check_run_id=3858536599#step:6:962 and https://github.com/JuliaGaussianProcesses/AbstractGPs.jl/pull/206/checks?check_run_id=3858536599#step:6:1068. Tests passed on the master branch two weeks ago. Maybe it's related to https://github.com/cscherrer/Soss.jl/issues/305? _Originally...