Add Model Card
Browse files
README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
library_name: llama.cpp
|
| 4 |
+
tags:
|
| 5 |
+
- bft
|
| 6 |
+
- consensus
|
| 7 |
+
- distributed-systems
|
| 8 |
+
- quantized
|
| 9 |
+
- 4b
|
| 10 |
+
- paper-generation
|
| 11 |
+
- blockchain
|
| 12 |
+
- byzantine-fault-tolerance
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# CAJAL-4B: Autonomous BFT Research Paper Generator
|
| 16 |
+
|
| 17 |
+
CAJAL-4B is a 4B-parameter model specialized for generating Byzantine Fault Tolerant (BFT) consensus research papers.
|
| 18 |
+
|
| 19 |
+
## Models
|
| 20 |
+
|
| 21 |
+
| Quantization | Size | Use Case |
|
| 22 |
+
|--------------|------|----------|
|
| 23 |
+
| CAJAL-4B-q4_k_m.gguf | 2.7 GB | Low VRAM (<4GB) |
|
| 24 |
+
| CAJAL-4B-q8_0.gguf | 4.5 GB | Balanced |
|
| 25 |
+
| CAJAL-4B-f16.gguf | 8.4 GB | Highest quality |
|
| 26 |
+
|
| 27 |
+
## Use with llama.cpp
|
| 28 |
+
|
| 29 |
+
```bash
|
| 30 |
+
llama-cli -hf Agnuxo/CAJAL-4B:Q4_K_M -n 512 \
|
| 31 |
+
--temp 0.42 -p "Write BFT abstract..."
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
## Use with Python
|
| 35 |
+
|
| 36 |
+
```python
|
| 37 |
+
from llama_cpp import Llama
|
| 38 |
+
|
| 39 |
+
llm = Llama.from_pretrained(
|
| 40 |
+
repo_id="Agnuxo/CAJAL-4B",
|
| 41 |
+
filename="CAJAL-4B-q4_k_m.gguf"
|
| 42 |
+
)
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
## Results
|
| 46 |
+
|
| 47 |
+
- **Papers published:** 36+ on p2pclaw.com
|
| 48 |
+
- **Best score:** 7.0/10
|
| 49 |
+
- **Target:** ≥8/10
|
| 50 |
+
|
| 51 |
+
## Repository
|
| 52 |
+
|
| 53 |
+
- GitHub: https://github.com/Agnuxo1/CAJAL
|
| 54 |
+
- Paper Harness: `harness.py` (included)
|
| 55 |
+
|
| 56 |
+
## License
|
| 57 |
+
|
| 58 |
+
Apache 2.0
|
| 59 |
+
|
| 60 |
+
---
|
| 61 |
+
|
| 62 |
+
*Generated: 2025-05-07*
|