Skip to content

Commit 4221c3f

Browse files
committed
oops, accidentally reverted the one legitimate exception
1 parent 17cb3f4 commit 4221c3f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tutorials/A Bottom-Up Introduction to Gen.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@
629629
"source": [
630630
"using Gen: get_score\n",
631631
"trace = simulate(foo, (0.3,))\n",
632-
"get_choices(trace)\n",
632+
"display(get_choices(trace))\n",
633633
"println(\"log probability: $(get_score(trace))\")"
634634
]
635635
},

tutorials/A Bottom-Up Introduction to Gen.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ end
361361

362362
using Gen: get_score
363363
trace = simulate(foo, (0.3,))
364-
get_choices(trace)
364+
display(get_choices(trace))
365365
println("log probability: $(get_score(trace))")
366366

367367
# Check this value against the hand-computed value in our table above.

0 commit comments

Comments
 (0)