Closed evjrob closed 2 years ago
+1 yes I ran into this issue as well. The message is confusing because it is an MCMCChains error, even though the cause is something from Pluto. I first thought it was an MCMCChains or Turing error, but then I ran the same code in the console and it worked fine. So that was the key.
Related to #196 ?
Pluto wants to use the Tables interface for displaying the chain (instead of the standard display
/show
methods in the REPL) but MCMCChains's implementation violates some of its assumptions: https://github.com/TuringLang/MCMCChains.jl/issues/268
This issue has been fixed with MCMCChains v4.7.2.
On the julia REPL, I also get info about the iterations, number of chains, samples per chain etc. But in Pluto I don't get that info, just the DataFrame. Is this by design?
On the REPL:
Whereas, on the Pluto notebook:
Using describe
is possible:
When running the Turing differential equations tutorial code below in the REPL everything works fine:
My equivalent Pluto code is here:
Running this yields the following error after the second cell instead of displaying the expected summary statistics table:
This occurs in both the generic Linux on x86 64-bit Julia release on an Arch install, and the 64-bit Windows release on Windows 10.