David Widmann
David Widmann
I think #390 would be cleaner than a separate macro - in Turing, every tilde statement is either an assumption ("prior") or an observation ("likelihood"), so stating explicitly to which...
> however for the second point, pdf(missing, x) was requested as well. Not every feature request is uncontroversial and should be implemented :slightly_smiling_face:
https://github.com/TuringLang/Turing.jl/issues/2074 and https://github.com/TuringLang/Turing.jl/issues/2095 might be related. Possibly fixed by https://github.com/TuringLang/Turing.jl/pull/2097?
> `!` methods never return a value. It's quite common in Julia that `!` functions return the argument that is mutated since this makes it easier to compose functions. The...
@mcabbott I think you might be interested in this change.
Missing keys are the most likely reason in my experience.
I added DOCUMENTER_KEY (and a matching deploy key).
Could the TensorBoardCallback moved to an extension? Then TuringCallbacks would seem rather lightweight and adding more callbacks there would seem the most straightforward approach. > MultipleCallback TuringCallbacks already contains `MultiCallback`,...
Since realfft is just a wrapper of RustFFT for convenient FFTs of real-valued data, I wonder if it would be the easiest to just re-implement https://github.com/HEnquist/realfft/blob/master/src/lib.rs in Julia. This would...
It's a tradeoff, of course, but given that the wrapper is very small (https://github.com/HEnquist/realfft/blob/master/src/lib.rs contains also tests and docs) I assume it could be a reasonable alternative to implement the...