Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
tags:
|
| 5 |
+
- deckergui
|
| 6 |
+
- token-classification
|
| 7 |
+
- entity-recognition
|
| 8 |
+
- ecosystem
|
| 9 |
+
- gate-prediction
|
| 10 |
+
license: mit
|
| 11 |
+
pipeline_tag: token-classification
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# DGUI-GatePredictor
|
| 15 |
+
|
| 16 |
+
Token classification model for predicting DGM gate outcomes in the DeckerGUI ecosystem.
|
| 17 |
+
|
| 18 |
+
## Model Details
|
| 19 |
+
|
| 20 |
+
- **Model Type:** Token Classification (Sequence Labeling)
|
| 21 |
+
- **Training Data:** deckergui-seed-status-events, deckergui-agent-coordination
|
| 22 |
+
- **Architecture:** DistilBERT-base with custom classification head
|
| 23 |
+
- **Labels:** gate_pass, gate_block, quota_exceeded, key_revoked, scope_violation
|
| 24 |
+
- **DeckerGUI Version:** v2.0.0
|
| 25 |
+
|
| 26 |
+
## Usage
|
| 27 |
+
|
| 28 |
+
```python
|
| 29 |
+
from transformers import pipeline
|
| 30 |
+
|
| 31 |
+
classifier = pipeline("token-classification", model="ctaxnagomi/DGUI-GatePredictor")
|
| 32 |
+
|
| 33 |
+
result = classifier("Agent dgui-emitter requested context.bundle with key 0xb553de32")
|
| 34 |
+
print(result)
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
## Training
|
| 38 |
+
|
| 39 |
+
Trained on synthetic DeckerGUI ecosystem data:
|
| 40 |
+
- 120 seed status events
|
| 41 |
+
- 180 agent coordination records
|
| 42 |
+
- Gate decision patterns from CaaS federation
|
| 43 |
+
|
| 44 |
+
## Citation
|
| 45 |
+
|
| 46 |
+
```bibtex
|
| 47 |
+
@software{deckergui_gate_predictor_2026,
|
| 48 |
+
title={DGUI-GatePredictor: Token Classification for DGM Gate Outcomes},
|
| 49 |
+
author={Wan Mohd Azizi bin Wan Hosen},
|
| 50 |
+
year={2026},
|
| 51 |
+
url={https://huggingface.co/ctaxnagomi/DGUI-GatePredictor}
|
| 52 |
+
}
|
| 53 |
+
```
|