Text Generation
Transformers
Safetensors
GGUF
English
qwen2
quantum-ml
hybrid-quantum-classical
quantum-kernel
research
quantum-computing
nisq
qiskit
quantum-circuits
vibe-thinker
physics-inspired-ml
quantum-enhanced
hybrid-ai
1.5b
small-model
efficient-ai
reasoning
chemistry
physics
text-generation-inference
conversational
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
# Chronos
|
| 2 |
|
| 3 |

|
| 4 |
|
|
@@ -11,7 +11,7 @@
|
|
| 11 |
|
| 12 |
## Overview
|
| 13 |
|
| 14 |
-
**Chronos
|
| 15 |
|
| 16 |
- **VibeThinker-1.5B** as the base transformer model for embedding extraction
|
| 17 |
- **Quantum Kernel Methods** for similarity computation
|
|
@@ -95,9 +95,9 @@ from sklearn.metrics.pairwise import cosine_similarity
|
|
| 95 |
|
| 96 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
| 97 |
|
| 98 |
-
tokenizer = AutoTokenizer.from_pretrained("squ11z1/chronos-
|
| 99 |
model = AutoModel.from_pretrained(
|
| 100 |
-
"squ11z1/chronos-
|
| 101 |
torch_dtype=torch.float16
|
| 102 |
).to(device).eval()
|
| 103 |
|
|
@@ -186,12 +186,12 @@ For production use, retrain with larger datasets.
|
|
| 186 |
If you use this model in your research, please cite:
|
| 187 |
|
| 188 |
```bibtex
|
| 189 |
-
@misc{chronos-
|
| 190 |
-
title={Chronos
|
| 191 |
author={squ11z1},
|
| 192 |
year={2025},
|
| 193 |
publisher={Hugging Face},
|
| 194 |
-
howpublished={\url{https://huggingface.co/squ11z1/chronos-
|
| 195 |
}
|
| 196 |
```
|
| 197 |
|
|
|
|
| 1 |
+
# Chronos 1.5B - Quantum-Classical model
|
| 2 |
|
| 3 |

|
| 4 |
|
|
|
|
| 11 |
|
| 12 |
## Overview
|
| 13 |
|
| 14 |
+
**Chronos 1.5B** is an experimental quantum-enhanced language model that combines:
|
| 15 |
|
| 16 |
- **VibeThinker-1.5B** as the base transformer model for embedding extraction
|
| 17 |
- **Quantum Kernel Methods** for similarity computation
|
|
|
|
| 95 |
|
| 96 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
| 97 |
|
| 98 |
+
tokenizer = AutoTokenizer.from_pretrained("squ11z1/chronos-1.5B")
|
| 99 |
model = AutoModel.from_pretrained(
|
| 100 |
+
"squ11z1/chronos-1.5B",
|
| 101 |
torch_dtype=torch.float16
|
| 102 |
).to(device).eval()
|
| 103 |
|
|
|
|
| 186 |
If you use this model in your research, please cite:
|
| 187 |
|
| 188 |
```bibtex
|
| 189 |
+
@misc{chronos-1.5b,
|
| 190 |
+
title={Chronos 1.5B: Quantum-Enhanced Sentiment Analysis},
|
| 191 |
author={squ11z1},
|
| 192 |
year={2025},
|
| 193 |
publisher={Hugging Face},
|
| 194 |
+
howpublished={\url{https://huggingface.co/squ11z1/chronos-1.5b}}
|
| 195 |
}
|
| 196 |
```
|
| 197 |
|