An efficient, non-autoregressive model for fast decision-making.
Project details
Von is an open-source System One decision model designed for rapid, reliable inference. It delivers sub-25ms performance without the overhead of autoregressive models, offering advantages in accuracy and efficiency. With hardware-agnostic acceleration and calibrated outputs, Von is tailored for applications requiring high-speed decision-making.
Von: An Open-Source Non-Autoregressive Decision Model
Von is an advanced System One decision model designed for high-speed decision-making in computational tasks. With capabilities to deliver responses in under 25 milliseconds, it offers a powerful, highly efficient alternative to traditional autoregressive models, addressing significant latency issues and memory overhead often associated with large language models (LLMs).
Unlike autoregressive models that process data token by token, Von performs classification, intent routing, and verification through direct inference. By leveraging a reflexive and parallel processing approach, Von significantly reduces execution time and improves accuracy in various application domains.
/v1/systemone specification, enhancing integration capabilities across different systems.In independent evaluations, Von has demonstrated superior performance across a range of tasks, particularly in real-time scenarios.
| Model / Architecture | Model Size | v2 Macro Acc (49 Tasks) | Choice Macro (20 Tasks) | ViZDoom Kills (Defend Center) | GPU Latency | Hosting / Cost |
|---|---|---|---|---|---|---|
TypeSafe Jev (typesafe/jev-1.13) | Proprietary MoE | 96.6% | 96.8% | 5.62 kills | ~115 ms (API) | Cloud Only ($0.042/1M tokens) |
| Von OptionMarker (Current) | 395M params | 71.5% | 83.4% | 9.38 kills | ~18 ms | Local / Free (Apache 2.0) |
GLiNER2 (fastino/gliner2-large-v1) | ~300M params | 68.4% | 76.2% | N/A | ~93 ms | Local / Free (Apache 2.0) |
| Finetuned Qwen3.5 (4B Causal) | 4B params | ~63.5% | 71.0% | 3.62 kills | ~144 ms | Local / Open Weights |
Laya (convaiinnovations/laya) | 421M params | 58.3% | 66.8% | 1.25 kills | ~16 ms | Local / Free (Apache 2.0) |
Von formalizes decision-making through three key primitives:
Von utilizes an innovative training approach combining Reinforcement Learning with Calibration Distribution (RLCD) to enhance both classification precision and probabilistic accuracy, featuring meticulously crafted training datasets that ensure balanced learning across diverse contexts.
Von can be applied in multiple scenarios, such as IT support ticket classification, real-time gaming control via ViZDoom, security incident management, and operational triage, demonstrating versatility across various domains.
In Python, Von can be effortlessly implemented to conduct discrete decisions based on system states:
import von
result = von.decide(
state="Database replication lag on cluster us-west-2 exceeded 45 seconds.",
choices={
"infrastructure": "Database, hardware, network, or server failures",
"billing": "Invoices, payments, refunds, subscription queries",
"feature_request": "Requests for new platform capabilities",
},
)
print(result.choice) # 'infrastructure'
print(result.confidence) # 0.8412
print(result.probabilities) # {'infrastructure': 0.9021, 'billing': 0.0489, ...}
The name 'Von' acknowledges the legacies of John von Neumann and Ludwig von Mises, who contributed significantly to computing and decision theory.
For more information, visit the GitHub repository and explore the potential of the Von decision model.
Comments
0Start the conversation
Share the first comment.