StatisticalRethinkingJulia / TuringModels.jl

Implementations of the models from the Statistical Rethinking book with Turing.jl
https://statisticalrethinkingjulia.github.io/TuringModels.jl/
MIT License
163 stars 18 forks source link

Replace NUTS(0.65) by NUTS() #69

Closed rikhuijzer closed 3 years ago

rikhuijzer commented 3 years ago

Since,

julia> using Turing

julia> NUTS(0.65) == NUTS()
true

we can simplify all our usages of NUTS(0.65) by replacing them with NUTS(). Also, I have removed some white space.