req
Browse files- requirements.txt +20 -44
requirements.txt
CHANGED
@@ -1,44 +1,20 @@
|
|
1 |
-
#
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
#
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
#
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
#
|
21 |
-
# tqdm==4.66.1
|
22 |
-
|
23 |
-
# requirements_clean.txt
|
24 |
-
fastapi
|
25 |
-
uvicorn[standard]
|
26 |
-
python-multipart
|
27 |
-
pydantic
|
28 |
-
|
29 |
-
# Core dependencies
|
30 |
-
numpy
|
31 |
-
opencv-python-headless
|
32 |
-
pillow
|
33 |
-
scipy
|
34 |
-
PyYAML
|
35 |
-
lsq-ellipse
|
36 |
-
shapely
|
37 |
-
|
38 |
-
# PyTorch CPU uniquement (beaucoup plus léger)
|
39 |
-
--extra-index-url https://download.pytorch.org/whl/cpu
|
40 |
-
torch+cpu
|
41 |
-
torchvision+cpu
|
42 |
-
|
43 |
-
# Utilities
|
44 |
-
tqdm
|
|
|
1 |
+
# API Framework
|
2 |
+
fastapi==0.104.1
|
3 |
+
uvicorn[standard]==0.24.0
|
4 |
+
python-multipart==0.0.6
|
5 |
+
pydantic==2.5.0
|
6 |
+
|
7 |
+
# Core dependencies (compatibles Python 3.10)
|
8 |
+
numpy==1.24.3
|
9 |
+
opencv-python-headless==4.8.1.78
|
10 |
+
pillow==10.1.0
|
11 |
+
scipy==1.11.4
|
12 |
+
PyYAML==6.0.1
|
13 |
+
lsq-ellipse==2.2.1
|
14 |
+
shapely==2.0.2
|
15 |
+
|
16 |
+
# PyTorch CPU (compatible Python 3.10)
|
17 |
+
torch==2.1.0
|
18 |
+
torchvision==0.16.0
|
19 |
+
|
20 |
+
# Utilities
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|