Seth Axen
Seth Axen
## Details I would expect permuting the two axes would result in the second plot being a rotated form of the first, and while the axes are swapped, the `fillrange`...
Consider the following example from [base Julia](https://github.com/JuliaLang/julia/blob/v1.4.1/base/math.jl#L119-L128): ```julia evalpoly(x, p::AbstractVector) = _evalpoly(x, p) function _evalpoly(x, p) N = length(p) ex = p[end] for i in N-1:-1:1 ex = muladd(x, ex,...
If we install scipy v1.8.1 in the Julia-specific conda environment and call `pyimport("scipy.fft")`, we get the following error: ```julia julia> using PyCall julia> pyimport("scipy.fft") ERROR: PyError (PyImport_ImportModule The Python package...
A `np.array` with `dtype=str`, when passed to Julia remains a `PyObject`, instead of becoming some useful `Array{String}`. Here's a minimal example: ```julia julia> using PyCall julia> py""" import numpy as...
As discussed on Slack, it would be very useful to expose more AdvancedHMC configuration options to the `NUTS`, `HMC`, and `HMCDA` convenience constructors here. In particular, it would be nice...
Currently if a user doesn't provide an array of initial values to `optimize`, Turing generates the initial values using `SampleFromPrior`. However, perhaps the user wants to use `SampleFromUniform` or some...
It might be useful to have a model transformation `marginalize_discrete` that marginalizes out discrete parameters and control flow when possible to turn a model with latent discrete parameters into one...
While reviewing #103, I saw a few things we can improve to standardize `advancedHMC` and `dynamicHMC`. I'll demo with the example in `README.md`: ```julia julia> using Soss, Random julia> Random.seed!(3);...
As mentioned in #105, I'd like to get Soss's time-to-first-model down. Besides making it easier to develop, this will also make Soss more attractive as a dependency for other projects....
Calling `particles` on a model with a `Poisson` distributed variable fails if its rate parameter is drawn from another distribution. eg: ```julia julia> using Soss, Distributions julia> m = @model...