squ11z1 commited on
Commit
e790522
·
verified ·
1 Parent(s): 99b6678

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -7
README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Chronos o1 1.5B - Quantum-Classical model
2
 
3
  ![chronos](https://cdn-uploads.huggingface.co/production/uploads/67329d3f69fded92d56ab41a/mkH0yazAc13v0gvi04RIF.jpeg)
4
 
@@ -11,7 +11,7 @@
11
 
12
  ## Overview
13
 
14
- **Chronos o1 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,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-o1-1.5b")
99
  model = AutoModel.from_pretrained(
100
- "squ11z1/chronos-o1-1.5b",
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-o1-1.5b,
190
- title={Chronos o1 1.5B: Quantum-Enhanced Sentiment Analysis},
191
  author={squ11z1},
192
  year={2025},
193
  publisher={Hugging Face},
194
- howpublished={\url{https://huggingface.co/squ11z1/chronos-o1-1.5b}}
195
  }
196
  ```
197
 
 
1
+ # Chronos 1.5B - Quantum-Classical model
2
 
3
  ![chronos](https://cdn-uploads.huggingface.co/production/uploads/67329d3f69fded92d56ab41a/mkH0yazAc13v0gvi04RIF.jpeg)
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