hjimjim commited on
Commit
dbc72c0
·
1 Parent(s): 9cd616a
Files changed (1) hide show
  1. requirements.txt +30 -110
requirements.txt CHANGED
@@ -1,115 +1,35 @@
 
1
  streamlit
2
  streamlit-drawable-canvas
3
  pillow
4
  numpy
5
- # Core Packages
6
- numpy==1.24.4
7
- pillow==9.5.0
8
- torch==2.4.1
9
- torchvision==0.8.1
10
- opencv-python==4.10.0.84
11
- opencv-python-headless==4.10.0.84
12
- tqdm==4.66.5
13
- scipy==1.10.1
14
- pandas==2.0.3
15
- matplotlib==3.7.5
16
- streamlit==1.39.0
17
- streamlit-drawable-canvas==0.9.3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
- # PyPI Packages
20
- absl-py==2.1.0
21
- aiohttp==3.10.10
22
- aiohappyeyeballs==2.4.3
23
- aiosignal==1.3.1
24
- albumentations==1.4.18
25
- altair==5.4.1
26
- async-timeout==4.0.3
27
- attrs==24.2.0
28
- blinker==1.8.2
29
- cachetools==5.5.0
30
- charset-normalizer==3.4.0
31
- click==8.1.7
32
- contourpy==1.1.1
33
- diffusers==0.31.0
34
- docker-pycreds==0.4.0
35
- einops==0.8.0
36
- filelock==3.16.1
37
- fonttools==4.54.1
38
- fsspec==2024.10.0
39
- gitdb==4.0.11
40
- gitpython==3.1.43
41
- google-auth==2.35.0
42
- google-auth-oauthlib==1.0.0
43
- grpcio==1.67.0
44
- huggingface-hub==0.26.1
45
- idna==3.10
46
- imageio==2.35.1
47
- importlib-metadata==8.5.0
48
- importlib-resources==6.4.5
49
- invisible-watermark==0.2.0
50
- jinja2==3.1.4
51
- jsonschema==4.23.0
52
- jsonschema-specifications==2023.12.1
53
- kiwisolver==1.4.7
54
- kornia==0.6.4
55
- markdown==3.7
56
- markdown-it-py==3.0.0
57
- matplotlib==3.7.5
58
- mdurl==0.1.2
59
- mpmath==1.3.0
60
- multidict==6.1.0
61
- networkx==3.1
62
- nvidia-cublas-cu12==12.1.3.1
63
- nvidia-cuda-cupti-cu12==12.1.105
64
- nvidia-cuda-nvrtc-cu12==12.1.105
65
- nvidia-cuda-runtime-cu12==12.1.105
66
- nvidia-cudnn-cu12==9.1.0.70
67
- nvidia-cufft-cu12==11.0.2.54
68
- nvidia-curand-cu12==10.3.2.106
69
- nvidia-cusolver-cu12==11.4.5.107
70
- nvidia-cusparse-cu12==12.1.0.106
71
- nvidia-nccl-cu12==2.20.5
72
- nvidia-nvjitlink-cu12==12.6.77
73
- nvidia-nvtx-cu12==12.1.105
74
- oauthlib==3.2.2
75
- omegaconf==2.3.0
76
- packaging==24.1
77
- pkgutil-resolve-name==1.3.10
78
- protobuf==3.20.1
79
- psutil==6.1.0
80
- pyarrow==17.0.0
81
- pydeck==0.9.1
82
- pydeprecate==0.3.2
83
- pygments==2.18.0
84
- pyparsing==3.1.4
85
- python-dateutil==2.9.0.post0
86
- pytorch-lightning==1.6.5
87
- pyyaml==6.0.2
88
- referencing==0.35.1
89
- regex==2024.9.11
90
- requests==2.32.3
91
- requests-oauthlib==2.0.0
92
- rich==13.9.3
93
- rsa==4.9
94
- safetensors==0.4.5
95
- scikit-image==0.21.0
96
- sentry-sdk==2.17.0
97
- setproctitle==1.3.3
98
- smmap==5.0.1
99
- sympy==1.13.3
100
- taming-transformers-rom1504==0.0.6
101
- tenacity==9.0.0
102
- tensorboard==2.14.0
103
- tensorboard-data-server==0.7.2
104
- tifffile==2023.7.10
105
- tokenizers==0.12.1
106
- toml==0.10.2
107
- torchmetrics==0.6.0
108
- transformers==4.19.2
109
- triton==3.0.0
110
- urllib3==2.2.3
111
- wandb==0.18.5
112
- watchdog==4.0.2
113
- werkzeug==3.0.6
114
- yarl==1.15.2
115
- zipp==3.20.2
 
1
+ # Core and frequently-used packages
2
  streamlit
3
  streamlit-drawable-canvas
4
  pillow
5
  numpy
6
+ torch
7
+ torchvision
8
+ opencv-python-headless
9
+ scipy
10
+ pandas
11
+ matplotlib
12
+
13
+ # Additional Libraries for Models, Diffusers, and Data Handling
14
+ absl-py
15
+ aiohttp
16
+ albumentations
17
+ click
18
+ einops
19
+ fsspec
20
+ huggingface-hub
21
+ kornia
22
+ omegaconf
23
+ protobuf
24
+ requests
25
+ scikit-image
26
+ tensorboard
27
+ tifffile
28
+ tokenizers
29
+ transformers
30
+ tqdm
31
+
32
+ # Additional supporting packages
33
+ watchdog
34
+ wandb
35