hperkins commited on
Commit
d4f4061
1 Parent(s): b45af94

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +16 -10
requirements.txt CHANGED
@@ -1,10 +1,16 @@
1
- torch>=1.10.0
2
- opencv-python-headless>=4.5.3.56
3
- Pillow>=8.0.0
4
- numpy==1.26.4
5
- regex==2024.7.24
6
- safetensors==0.4.4
7
- tokenizers==0.19.1
8
- transformers @ git+https://github.com/huggingface/transformers
9
- qwen-vl-utils==0.0.4
10
- flash-attn==2.6.3
 
 
 
 
 
 
 
1
+ opencv-python-headless>=4.5.3.56 # For image processing in headless environments
2
+ numpy==1.26.4 # Numeric operations
3
+ regex==2024.7.24 # Regular expressions, useful in text processing
4
+ safetensors==0.4.4 # Secure and efficient storage of tensors
5
+ tokenizers==0.19.1 # Fast tokenization of text, often used with transformers
6
+ transformers @ git+https://github.com/huggingface/transformers # Use the latest transformers directly from source
7
+ qwen-vl-utils==0.0.4 # Utils specific to Qwen-VL models
8
+ flash-attn==2.6.3 # Flash Attention for performance optimization
9
+ torch==2.0.1 # PyTorch, a deep learning framework
10
+ diffusers>=0.21.0 # For handling model outputs and diffusion models
11
+ fastapi==0.95.0 # Web framework for building APIs
12
+ starlette==0.31.0 # ASGI framework used by FastAPI
13
+ requests==2.31.0 # HTTP library for making requests
14
+ Pillow==10.0.1 # Image processing library
15
+ uvicorn==0.23.2 # ASGI server for running FastAPI apps
16
+ accelerate==0.21.0 # For improving and optimizing model deployment