You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Distributions now implement math directly. That is, you can do things like sq.norm(2, 3) + sq.norm(4, 5), whereas previously this would not work. Thanks to Dawn Drescher for helping me implement this.
~sq.norm(1, 2) is now a shorthand for sq.sample(sq.norm(1, 2)). Thanks to Dawn Drescher for helping me implement this shorthand.
sq.norm(1, 2) @ 100 is now a shorthand for sq.sample(sq.norm(1, 2), n=100)