Views
No views yet
| Component | Repo | Task |
|---|---|---|
| Quick Vibe (Tier 1) | itsLu/mentalbert-v5-source-aware | Cooperative source-aware 8-class MentalBERT |
| Pathway A (Tier 2) | itsLu/mentalbert-v5-specialist-a | CSSRS-pure 6-class specialist |
| Pathway B (Tier 2) | itsLu/longformer-v5-crisis-evidence | Binary crisis-evidence Longformer |
1ROUTE_TO_DEEP_DIVE = (
2 top1_prob < 0.65
3 or (top1_class in {Depression, Suicidal} and margin < 0.2)
4)
5# Pass-through: Normal and Directed Aggression always use Quick Vibe1crisis_boost = alpha * pathway_b_crisis_prob # alpha=1.5
2fused_logits[Suicidal] += crisis_boost
3fused_logits[Depression] -= 0.5 * crisis_boost # mass conservation
4final = softmax(fused_logits)1import json
2from huggingface_hub import hf_hub_download
3
4cascade_cfg = json.load(open(hf_hub_download('itsLu/vibecheck-deepdive-cascade', 'cascade_config.json')))
5pathway_a = load_specialist_a(cascade_cfg['pathway_a_repo'])
6pathway_b = load_specialist_b(cascade_cfg['pathway_b_repo'])
7result = cascade_predict(text, quick_vibe, pathway_a, pathway_b, cascade_cfg)| Metric | Value |
|---|---|
| Accuracy | 84.82% |
| F1 Macro | 0.8558 |
| Total bleed | 1179 |
| Dep→Sui | 482 |
| Sui→Dep (critical) | 697 |
| % routed to Deep Dive | 12.2% |