orpheus0429 commited on
Commit
ad8dbb7
·
verified ·
1 Parent(s): a941979

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +13 -44
requirements.txt CHANGED
@@ -1,47 +1,16 @@
1
- accelerate==0.28.0
2
- certifi==2025.7.14
3
- charset-normalizer==3.4.2
4
- contourpy==1.1.1
5
- cycler==0.12.1
6
  gradio
7
- einops==0.8.1
8
- filelock==3.16.1
9
- fonttools==4.57.0
10
- fsspec==2025.3.0
11
- hf-xet==1.1.5
12
- huggingface-hub==0.33.4
13
- idna==3.10
14
- importlib_resources==6.4.5
15
- kiwisolver==1.4.7
16
- matplotlib==3.7.5
17
- mpmath==1.3.0
18
- numpy==1.24.4
19
- opencv-python==4.8.1.78
20
- packaging==25.0
21
- pandas==2.0.3
22
- pillow==10.4.0
23
- prefetch-generator==1.0.3
24
- psutil==7.0.0
25
- pyparsing==3.1.4
26
- python-dateutil==2.9.0.post0
27
- pytz==2025.2
28
- PyYAML==6.0.2
29
- regex==2024.11.6
30
- requests==2.32.4
31
- safetensors==0.5.3
32
- scipy==1.10.1
33
- seaborn==0.13.2
34
- six==1.17.0
35
- sympy==1.12
36
- timm==1.0.17
37
- tokenizers==0.15.2
38
  torch
39
- torch-ema==0.3
40
- torchaudio
41
  torchvision
42
- tqdm==4.67.1
43
- transformers==4.36.1
44
- typing_extensions==4.13.2
45
- tzdata==2025.2
46
- urllib3==2.2.3
47
- zipp==3.20.2
 
 
 
 
 
1
+ # --- 主应用框架 ---
 
 
 
 
2
  gradio
3
+
4
+ # --- 机器学习核心 ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  torch
 
 
6
  torchvision
7
+ # torchaudio # 你的模型处理图像,很可能用不到音频库,可以先注释掉
8
+
9
+ # --- 模型直接依赖 ---
10
+ transformers
11
+ timm # 你的 FGResQ.py 很可能也依赖这个视觉库
12
+ einops # 同上,很多视觉模型会用到
13
+
14
+ # --- 图像处理 ---
15
+ Pillow
16
+ opencv-python