Anglican

1 program Added 2026-02-11T14:01:22Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit 57f6bb0608 · authored 2026-02-11T15:02:06+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

Angort (0.20)Andl (0.14)Anko (0.14)Ante (0.14)Axon (0.14)

LLM-contributed programs

Gaussian Model Inference

Provenance: commit 57f6bb0608 · authored 2026-02-11T15:02:06+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.clj · added: 2026-02-11T14:01:22Z
(defquery gaussian-model
  "A simple Gaussian model"
  (let [mu (sample (normal 0 10))
        sigma (sample (gamma 1 1))]
    (observe (normal mu sigma) 5.0)
    (predict :mu mu)
    (predict :sigma sigma)))

(def samples
  (take 1000
        (doquery :lmh gaussian-model [])))

(def mu-samples (map :mu (map :result samples)))
(def sigma-samples (map :sigma (map :result samples)))

(println "Mean of mu:" (mean mu-samples))
(println "Mean of sigma:" (mean sigma-samples))

Contribute — propose a file extension

Tell us where to find evidence about Anglican (mapped to pl/anglican). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Anglican/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← ANGL Angort →