Update README.md
Browse files
README.md
CHANGED
|
@@ -47,6 +47,17 @@ base_model: persadian/persadian-Nano-V4
|
|
| 47 |
| Inference Efficiency | Infrastructure-heavy | ✅Optimized for constrained hardware |
|
| 48 |
| Innovation Focus | Scale-first | ✅Efficiency-first with adaptive systems |
|
| 49 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
## Citation
|
| 51 |
```bibtex
|
| 52 |
@misc{persadian2026nano,
|
|
|
|
| 47 |
| Inference Efficiency | Infrastructure-heavy | ✅Optimized for constrained hardware |
|
| 48 |
| Innovation Focus | Scale-first | ✅Efficiency-first with adaptive systems |
|
| 49 |
|
| 50 |
+
## Quick Start
|
| 51 |
+
```from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 52 |
+
|
| 53 |
+
# The trust_remote_code=True flag is still required for custom models
|
| 54 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 55 |
+
"persadian/persadian-nano-v4",
|
| 56 |
+
trust_remote_code=True
|
| 57 |
+
)
|
| 58 |
+
tokenizer = AutoTokenizer.from_pretrained("persadian/persadian-nano-v4")
|
| 59 |
+
```
|
| 60 |
+
|
| 61 |
## Citation
|
| 62 |
```bibtex
|
| 63 |
@misc{persadian2026nano,
|