lixinhao commited on
Commit
70023dc
·
verified ·
1 Parent(s): a715cd2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -4
README.md CHANGED
@@ -94,10 +94,13 @@ VideoChat-Flash-2B is constructed upon UMT-L (300M) and Qwen2_5-2B, employing on
94
  ## 🚀 How to use the model
95
 
96
 
97
- ### Generation
98
-
99
- We provide the simple generation process for using our model. For more details, you could refer to [Github](https://github.com/LLaVA-VL/LLaVA-NeXT).
100
-
 
 
 
101
  ```python
102
  from transformers import AutoModel, AutoTokenizer
103
 
 
94
  ## 🚀 How to use the model
95
 
96
 
97
+ We provide the simple conversation process for using our model. You need to install [flash attention2](https://github.com/Dao-AILab/flash-attention) to use our visual encoder.
98
+ ```
99
+ pip install transformers==4.39.2
100
+ pip install timm
101
+ pip install flash-attn --no-build-isolation
102
+ ```
103
+ Then you could use our model:
104
  ```python
105
  from transformers import AutoModel, AutoTokenizer
106