probmods / webppl-viz

Visualization for WebPPL
http://probmods.github.io/webppl-viz/
Other
14 stars 9 forks source link

viz.auto() doesn't know how to render Gaussian({ mu: 0, sigma: 1 }) #67

Closed critcha closed 7 years ago

critcha commented 7 years ago

Is the intended behavior of

viz.auto(Gaussian({mu: 0, sigma:1}))

to return a probability density function? It returns the error in the title instead...

longouyang commented 7 years ago

Looks like there's some bug with viz.auto. For now, use viz, which is a wrapper around viz.auto: viz(Gaussian({mu: 0, sigma:1}))

critcha commented 7 years ago

Thanks dude!

On Sun, Nov 20, 2016 at 9:27 PM Long Ouyang notifications@github.com wrote:

Looks like there's some bug with viz.auto. For now, use viz, which is a wrapper around viz.auto: viz(Gaussian({mu: 0, sigma:1}))

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/probmods/webppl-viz/issues/67#issuecomment-261846841, or mute the thread https://github.com/notifications/unsubscribe-auth/AFIQSPWUW6gut-KtqtbABtCemCRGNszlks5rASuugaJpZM4K3tyB .

longouyang commented 7 years ago

Fixed