WebPPL
1 program
Added 2026-02-11T11:29:03Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit f282b27b2a · authored 2026-02-11T12:29:52+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Bayesian Coin Flip
Provenance: commit f282b27b2a · authored 2026-02-11T12:29:52+01:00 · agent claude-code · model sonnet · WebSearch disabled
// Bayesian coin flip inference
var model = function() {
var weight = uniform(0, 1);
observe(Bernoulli({p: weight}), true);
observe(Bernoulli({p: weight}), true);
observe(Bernoulli({p: weight}), false);
observe(Bernoulli({p: weight}), true);
return weight;
};
var posterior = Infer({method: 'MCMC', samples: 10000}, model);
print("Expected weight: " + expectation(posterior));
viz(posterior);