We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, multiple tutorials use a deprecated MvNormal constructor (deprecated in JuliaStats/Distributions.jl#1362).
MvNormal
julia> using Distributions julia> MvNormal([1], 1.0) # Old constructor. ┌ Warning: `MvNormal(μ::AbstractVector{<:Real}, σ::Real)` is deprecated, use `MvNormal(μ, σ ^ 2 * I)` instead. │ caller = ip:0x0 └ @ Core :-1 IsoNormal( dim: 1 μ: [1.0] Σ: [1.0] ) julia> I = Distributions.I; julia> MvNormal([1], 1.0^2 * I) # New constructor. IsoNormal( dim: 1 μ: [1.0] Σ: [1.0] )
The usage of the old constructor has to be removed in the following tutorials:
truncated
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, multiple tutorials use a deprecated
MvNormal
constructor (deprecated in JuliaStats/Distributions.jl#1362).The usage of the old constructor has to be removed in the following tutorials:
01 - Gaussian mixture modelFixed in Update Gaussian mixture tutorial #29303 - Bayesian neural networkFixed in Updatetruncated
andMvNormal
#32505 - Linear regressionFixed in Updatetruncated
andMvNormal
#32509 - Variational inferenceFixed in Updatetruncated
andMvNormal
#32510 - Bayesian differential equationsFixed in Fix differential equation tutorial #296The text was updated successfully, but these errors were encountered: