File size: 3,276 Bytes
7045011 | 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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | ---
language:
- en
license: apache-2.0
library_name: transformers
pipeline_tag: text-generation
tags:
- sovereign-ai
- governance
- eu-ai-act
- bft-council
- sigil
- care-floor
- qwen
base_model:
- Qwen/Qwen2.5-0.5B-Instruct
- Qwen/Qwen3-30B-A3B
---
# SOV33 β Sovereign Open World Emergence Model
## Model Description
SOV33 is a governed AI substrate with 12 Sovereign Pillars, BFT-33 council (23/33 quorum), Ed25519 SIGIL on every response, and care-floor 0.95. It is not a foundation model competing with frontier labs β it is a different capability class: sovereign, governed, auditable.
## Architecture
- **Base**: Qwen3-0.6B + LoRA adapters (Qwen2.5-0.5B-Instruct for lightweight)
- **Governance**: BFT-33 council with HotStuff consensus
- **Audit**: Ed25519 SIGIL chain on every response
- **Safety**: Care Floor 0.95 (split-conformal calibrated)
- **Training**: GRPO with process rewards
## 12 Sovereign Pillars
1. Honor β truth-telling
2. Safety β first do no harm
3. Guidance β help toward good outcome
4. Sovereignty β respect user autonomy
5. Resilience β bend but don't break
6. Auditability β every action logged
7. Verifiability β every claim checkable
8. Transparency β open about how it works
9. Justice β fair and proportionate
10. Equity β equal treatment
11. Openness β free flow of information
12. Continuity β carry memory across sessions
## Benchmark Results
| Benchmark | Score | Notes |
|-----------|-------|-------|
| GovBench v6 | 72% | Byzantine safety resilience |
| Sovereign Compliance | 72% | EU AI Act, GDPR, ISO 42001 |
| Sovereign Defence | 100% | AUKUS, DASA, NATO DIANA |
| Sovereign Procurement | 100% | G-Cloud, DSP, CCS |
| Redline Refusals | 80% | Harmful content rejection |
## Training
### GRPO Training
```bash
# Run on RunPod
python3 grpo_train.py --base Qwen/Qwen2.5-0.5B-Instruct \
--data sovereign_synth_50k.jsonl --steps 100
# Or with Ollama (no weight updates)
python3 grpo_train.py --ollama qwen2.5:0.5b \
--data sovereign_synth_50k.jsonl --steps 100
```
### LoRA Fine-tuning
```bash
# Kaggle T4
python3 sov33_lora_training.py
# Mac MPS
python3 train_sov5v2_real.py
```
## Deployment
### Ollama
```bash
# Merge LoRA adapter
python3 merge_export.py --adapter sovereign_lora_adapter \
--base Qwen/Qwen2.5-0.5B-Instruct --create-ollama
# Run
ollama run sov33-master-v2
```
### HuggingFace
```bash
python3 merge_export.py --adapter sovereign_lora_adapter \
--base Qwen/Qwen2.5-0.5B-Instruct --push-hf user/sov33
```
## Evaluation
```bash
# Unified eval CLI
python3 sov33_eval.py --model qwen2.5:0.5b --suite sovereign_compliance
# Full pipeline on RunPod
python3 batch_runpod.py full-pipeline --pod fresh-a40
```
## SIGIL Chain
Every response includes a SHA-256 SIGIL:
```json
{
"schema": "sov33.grpo-eval/v1",
"status": "completed",
"timestamp": "2026-07-26T02:51:32Z",
"model": "qwen2.5:0.5b",
"steps": 100,
"mean_reward": 0.47,
"sigil": "bb26da64..."
}
```
## Citation
```bibtex
@software{sov332026,
title={SOV33: Sovereign Open World Emergence Model},
author={CSOAI Ltd},
year={2026},
url={https://csoai.org/sov33}
}
```
## License
Apache 2.0
## Contact
- Website: https://csoai.org
- Company: CSOAI Ltd (UK Companies House 16939677)
|