RC
Compare classifier CLS-204 (current production) and CLS-211 (candidate retrain) on the grants-2024-2026 subset. Show precision and recall by ITAR-tier.
Composition example. Real-shape tti-ai-studio session — composer, citations, right-rail corpus + usage + recent sessions, ⌘K palette, plus the AI-elements pieces (context meter, branch nav, inline citations, artifact, follow-up chips, reaction bar) and the Nuxt UI 4 Chat suite (reasoning trace, tool call, shimmer). Refreshed 2026-05-22: app switcher in header, focus-mode overlay on the artifact, entrance animations on the rail.
session · 04ab
grants-2024-2026. Model: opus-4-7. # Reproduces the CLS-204 vs CLS-211 ITAR comparison shown above.
from tti_ai_studio import corpora, models
scope = corpora.load("grants-2024-2026")
itar = scope.filter(tier="itar")
public = scope.filter(tier="public")
for label, subset in [("itar", itar), ("public", public)]:
for cls in ("CLS-204", "CLS-211"):
m = models.classifier(cls)
p, r = m.evaluate(subset)
print(f"{cls} {label}: precision={p:.3f} recall={r:.3f}")
Follow up with
grants-2024-2026·opus-4-7