Bagaev Dmitry
Bagaev Dmitry
Hey, thanks for the nice package! Recently I probably came across a bug in Turing.jl. I run a slightly modified version of HMM [demo](https://turing.ml/dev/tutorials/04-hidden-markov-model/). I use the following inference function:...
Hey, I did not find an option to format this code: ``` function foo(x::T) where {T
It would be better to replace `dot(z, Q * z)` (here https://github.com/JuliaStats/Distances.jl/blob/master/src/mahalanobis.jl#L83 and in other places) with `dot(z, Q, z)` without storing the intermediate result of Q*z. The problem here...
The `mul_trace` function gives uninformative error when called with `Float32` matrices. ``` mul_trace: Error During Test at /home/runner/work/ReactiveMP.jl/ReactiveMP.jl/test/algebra/test_helpers.jl:78 Test threw exception Expression: ReactiveMP.mul_trace(A, B) ≈ tr(A * B) UndefVarError: ####op#279__0...
Hey, thanks for the great library! I'm not sure if this is a bug, but the following code doesn't work for me for no obvious reason: ```julia function logmean(samples, weights)...
We have implemented native reactive programming support in Julia programming language - [Rocket.jl](https://github.com/biaslab/Rocket.jl). It has been highly inspired by reactivex community, [concepts](https://biaslab.github.io/Rocket.jl/stable/getting-started/) and [function/operator names](https://biaslab.github.io/Rocket.jl/stable/operators/all/) were mostly directly translated to...
After conversation in the Julia's helpedesk slack channel I decided to open this issue, but I'm not sure it has something to do with either Julia or `BenchmarkTools.jl`. Just something...
Multiple instance of the same slider in different parts of the Pluto notebook doesn't update showed value properly. It only updates its position. MWE: Consider in one cell we have...
Hey! Thanks for this amazing package. Would it be possible to add mutating version of all functions that would support and reuse external storage for sigma points and weights instead...
@ismailsenoz noticed that the following snippet fails to create a proper node: ```julia @node SomeNode Stochastic [ out, some_interface ] ``` The problem is that interface names must not include...