hxssgaa commited on
Commit
4965843
·
verified ·
1 Parent(s): 02e7867

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -8
README.md CHANGED
@@ -146,12 +146,15 @@ The processor exposes `process_texts`, `process_images`, and `score_multi_vector
146
 
147
  ### Prerequisites
148
 
149
- Note our model currently requires `flash-attn` to be installed. If you run into slow image encoding issue, please check whether `flash-attn` is installed properly.
 
 
150
 
151
  ```bash
152
- pip install torch torchvision transformers pillow requests
 
153
  pip install flash-attn --no-build-isolation
154
- ````
155
 
156
  ### Inference Code
157
 
@@ -336,10 +339,11 @@ We gratefully acknowledge the support of **[Tomoro AI](https://tomoro.ai/)**, a
336
  If you use this model, please cite:
337
 
338
  ```bibtex
339
- @misc{huang2025tomoro_colqwen3_embed,
340
- title = {TomoroAI/tomoro-colqwen3-embed},
341
- author = {Xin Huang and Kye Min Tan and Albert Phelps},
342
- year = {2025},
343
- url = {https://huggingface.co/TomoroAI/tomoro-colqwen3-embed-8b}
 
344
  }
345
  ```
 
146
 
147
  ### Prerequisites
148
 
149
+ We strongly suggest `flash-attn` to be installed. If not, please change to `attention_impl="sdpa"`
150
+
151
+ Currently we only support torch==2.8.0, for higher pytorch version, please build flash attention manually, otherwise performance throughput could be low.
152
 
153
  ```bash
154
+ pip install torch==2.8.0 torchvision==0.23.0 --index-url https://download.pytorch.org/whl/cu128
155
+ pip install transformers pillow requests
156
  pip install flash-attn --no-build-isolation
157
+ ```
158
 
159
  ### Inference Code
160
 
 
339
  If you use this model, please cite:
340
 
341
  ```bibtex
342
+ @misc{huang2025beyond,
343
+ author = {Huang, Xin and Tan, Kye Min},
344
+ title = {Beyond Text: Unlocking True Multimodal, End-to-end RAG with Tomoro ColQwen3},
345
+ year = {2025},
346
+ url = {https://tomoro.ai/insights/beyond-text-unlocking-true-multimodal-end-to-end-rag-with-tomoro-colqwen3},
347
+ publisher = {Tomoro.ai}
348
  }
349
  ```