SondosM commited on
Commit
56a7625
·
verified ·
1 Parent(s): 6e642e7

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +91 -87
requirements.txt CHANGED
@@ -1,97 +1,101 @@
1
- fastapi==0.111.0
2
- uvicorn[standard]==0.30.1
3
- fastapi-cli==0.0.24
4
- python-multipart==0.0.9
5
- starlette==0.37.2
6
- huggingface_hub==1.5.0
7
- hf-xet==1.3.2
 
8
 
 
9
  numpy<2.0.0
10
  pandas
11
- scipy==1.17.1
12
- joblib==1.5.3
13
- scikit-learn==1.8.0
14
- mpmath==1.3.0
15
- sympy==1.14.0
16
 
 
17
  torch
18
  torchvision
19
- pytorch-lightning==2.6.1
20
- torchmetrics==1.8.2
21
  ultralytics
22
- ultralytics-thop==2.0.18
23
- safetensors==0.7.0
24
- timm==1.0.25
25
- einops==0.8.2
26
 
27
- smplx==0.1.28
28
- chumpy==0.70
29
- trimesh==4.11.2
30
- yacs==0.1.8
 
31
 
32
- opencv-python-headless==4.13.0.92
33
- pillow==12.1.1
34
- matplotlib==3.10.8
35
- contourpy==1.3.3
36
- cycler==0.12.1
37
- fonttools==4.61.1
38
- kiwisolver==1.4.9
39
- pyparsing==3.3.2
 
40
 
41
- aiohappyeyeballs==2.6.1
42
- aiohttp==3.13.3
43
- aiosignal==1.4.0
44
- annotated-types==0.7.0
45
- anyio==4.12.1
46
- attrs==25.4.0
47
- certifi==2026.2.25
48
- charset-normalizer==3.4.4
49
- click==8.3.1
50
- colorama==0.4.6
51
- dill==0.4.1
52
- dnspython==2.8.0
53
- email-validator==2.3.0
54
- filelock==3.25.0
55
- frozenlist==1.8.0
56
- fsspec==2026.2.0
57
- h11==0.16.0
58
- httpcore==1.0.9
59
- httptools==0.7.1
60
- httpx==0.28.1
61
- idna==3.11
62
- Jinja2==3.1.6
63
- lightning-utilities==0.15.3
64
- MarkupSafe==3.0.3
65
- multidict==6.7.1
66
- networkx==3.6.1
67
- orjson==3.11.7
68
- packaging==26.0
69
- propcache==0.4.1
70
- psutil==7.2.2
71
- pydantic==2.12.5
72
- pydantic_core==2.41.5
73
- Pygments==2.19.2
74
- python-dateutil==2.9.0.post0
75
- python-dotenv==1.2.2
76
- requests==2.32.5
77
- rich==14.3.3
78
- rich-toolkit==0.19.7
79
- shellingham==1.5.4
80
- six==1.17.0
81
- threadpoolctl==3.6.0
82
- tqdm==4.67.3
83
- typer==0.24.1
84
- typing_extensions==4.15.0
85
- tzdata==2025.3
86
- ujson==5.11.0
87
- urllib3==2.6.3
88
- watchfiles==1.1.1
89
- websockets==16.0
90
- yarl==1.23.0
91
-
92
- annotated-doc==0.0.4
93
- markdown-it-py==4.0.0
94
- mdurl==0.1.2
95
- polars==1.38.1
96
- polars-runtime-32==1.38.1
97
- typing-inspection==0.4.2
 
1
+ # Web & API
2
+ fastapi
3
+ uvicorn[standard]
4
+ fastapi-cli
5
+ python-multipart
6
+ starlette
7
+ huggingface_hub
8
+ hf-xet
9
 
10
+ # Data Science (Removed specific version numbers for stability)
11
  numpy<2.0.0
12
  pandas
13
+ scipy
14
+ joblib
15
+ scikit-learn
16
+ mpmath
17
+ sympy
18
 
19
+ # AI & Computer Vision
20
  torch
21
  torchvision
22
+ pytorch-lightning
23
+ torchmetrics
24
  ultralytics
25
+ ultralytics-thop
26
+ safetensors
27
+ timm
28
+ einops
29
 
30
+ # SMPLX & 3D
31
+ smplx
32
+ chumpy
33
+ trimesh
34
+ yacs
35
 
36
+ # Images & System
37
+ opencv-python-headless
38
+ pillow
39
+ matplotlib
40
+ contourpy
41
+ cycler
42
+ fonttools
43
+ kiwisolver
44
+ pyparsing
45
 
46
+ # Helpers
47
+ aiohappyeyeballs
48
+ aiohttp
49
+ aiosignal
50
+ annotated-types
51
+ anyio
52
+ attrs
53
+ certifi
54
+ charset-normalizer
55
+ click
56
+ colorama
57
+ dill
58
+ dnspython
59
+ email-validator
60
+ filelock
61
+ frozenlist
62
+ fsspec
63
+ h11
64
+ httpcore
65
+ httptools
66
+ httpx
67
+ idna
68
+ Jinja2
69
+ lightning-utilities
70
+ MarkupSafe
71
+ multidict
72
+ networkx
73
+ orjson
74
+ packaging
75
+ propcache
76
+ psutil
77
+ pydantic
78
+ pydantic_core
79
+ Pygments
80
+ python-dateutil
81
+ python-dotenv
82
+ requests
83
+ rich
84
+ rich-toolkit
85
+ shellingham
86
+ six
87
+ threadpoolctl
88
+ tqdm
89
+ typer
90
+ typing_extensions
91
+ tzdata
92
+ ujson
93
+ urllib3
94
+ watchfiles
95
+ websockets
96
+ yarl
97
+ annotated-doc
98
+ markdown-it-py
99
+ mdurl
100
+ polars
101
+ typing-inspection