File size: 2,089 Bytes
7f04477 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | ---
license: mit
language:
- en
tags:
- governed-language-model
- semiconductor
- conversational
- governance
pipeline_tag: text-generation
---
# Axiom-560M
**A Governed Language Model β every output ships its own proof of governance.**
Axiom-560M is a dual-mode decoder (conversational + semiconductor) trained on 56,000 governed pairs. Governance isn't a filter β it's the architecture.
## Model Details
| | |
|---|---|
| Architecture | BLOOM-560M (decoder-only transformer) |
| Parameters | 559M |
| Training data | 56,000 governed pairs (conversational + semiconductor RTL) |
| Eval loss | 0.1635 |
| Perplexity | 1.18 overall (1.16 conversational, 1.64 semiconductor) |
| License | MIT |
## Modes
**Conversational** β governed dialogue (perplexity 1.16)
**Semiconductor** β governed RTL and hardware specifications (perplexity 1.64)
## Usage
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("MetaCortex-Dynamics/Axiom-560M")
tokenizer = AutoTokenizer.from_pretrained("MetaCortex-Dynamics/Axiom-560M")
input_ids = tokenizer.encode("<|conv|>What is governed generation?", return_tensors="pt")
output = model.generate(input_ids, max_new_tokens=200, temperature=0.7, do_sample=True)
print(tokenizer.decode(output[0], skip_special_tokens=True))
```
## Governance
Every output passes through a four-phase governance pipeline:
```
PROPOSE β DECIDE β PROMOTE β EXECUTE
```
- 15 grounding operators as token vocabulary
- 7 interrogative witnesses as grammar
- Admissibility gates (Gβ-Gβ) with three-valued semantics
- Machine-verifiable governance trace on every output
## Links
- [Interactive Demo](https://huggingface.co/spaces/MetaCortex-Dynamics/Axiom-Ref) β try Axiom in your browser
- [Source Code](https://github.com/MetaCortex-Dynamics/Axiom) β MIT license
- [Benchmark Results](https://github.com/MetaCortex-Dynamics/Axiom/blob/main/BENCHMARKS.md) β 100% governance vs 0% all LLMs
## Organization
[MetaCortex Dynamics DAO](https://github.com/MetaCortex-Dynamics)
|