added_files
Browse files- .dockerignore +4 -0
- requirements.txt +10 -77
.dockerignore
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
*.ipynb
|
2 |
+
*.json
|
3 |
+
.git
|
4 |
+
__pycache__
|
requirements.txt
CHANGED
@@ -1,77 +1,10 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
colorama==0.4.6
|
12 |
-
command-not-found==0.3
|
13 |
-
configobj==5.0.8
|
14 |
-
cryptography==41.0.7
|
15 |
-
cupshelpers==1.0
|
16 |
-
dbus-python==1.3.2
|
17 |
-
defer==1.0.6
|
18 |
-
distro==1.9.0
|
19 |
-
distro-info==1.7+build1
|
20 |
-
duplicity==2.1.4
|
21 |
-
fasteners==0.18
|
22 |
-
gyp==0.1
|
23 |
-
httplib2==0.20.4
|
24 |
-
idna==3.6
|
25 |
-
Jinja2==3.1.2
|
26 |
-
jsonpatch==1.32
|
27 |
-
jsonpointer==2.0
|
28 |
-
jsonschema==4.10.3
|
29 |
-
language-selector==0.1
|
30 |
-
launchpadlib==1.11.0
|
31 |
-
lazr.restfulclient==0.14.6
|
32 |
-
lazr.uri==1.0.6
|
33 |
-
louis==3.29.0
|
34 |
-
Mako==1.3.2.dev0
|
35 |
-
markdown-it-py==3.0.0
|
36 |
-
MarkupSafe==2.1.5
|
37 |
-
mdurl==0.1.2
|
38 |
-
monotonic==1.6
|
39 |
-
netaddr==0.8.0
|
40 |
-
netifaces==0.11.0
|
41 |
-
oauthlib==3.2.2
|
42 |
-
olefile==0.46
|
43 |
-
paramiko==2.12.0
|
44 |
-
pexpect==4.9.0
|
45 |
-
pillow==10.2.0
|
46 |
-
ptyprocess==0.7.0
|
47 |
-
pycairo==1.25.1
|
48 |
-
pycups==2.0.1
|
49 |
-
Pygments==2.17.2
|
50 |
-
PyGObject==3.48.2
|
51 |
-
PyJWT==2.7.0
|
52 |
-
PyNaCl==1.5.0
|
53 |
-
pyparsing==3.1.1
|
54 |
-
pyrsistent==0.20.0
|
55 |
-
pyserial==3.5
|
56 |
-
python-apt==2.7.7+ubuntu4
|
57 |
-
python-dateutil==2.8.2
|
58 |
-
python-debian==0.1.49+ubuntu2
|
59 |
-
pytz==2024.1
|
60 |
-
pyxdg==0.28
|
61 |
-
PyYAML==6.0.1
|
62 |
-
requests==2.31.0
|
63 |
-
rich==13.7.1
|
64 |
-
setuptools==68.1.2
|
65 |
-
six==1.16.0
|
66 |
-
systemd-python==235
|
67 |
-
typing_extensions==4.10.0
|
68 |
-
ubuntu-drivers-common==0.0.0
|
69 |
-
ubuntu-pro-client==8001
|
70 |
-
ufw==0.36.2
|
71 |
-
unattended-upgrades==0.1
|
72 |
-
urllib3==2.0.7
|
73 |
-
usb-creator==0.3.16
|
74 |
-
wadllib==1.3.6
|
75 |
-
wheel==0.42.0
|
76 |
-
xdg==5
|
77 |
-
xkit==0.0.0
|
|
|
1 |
+
fastapi
|
2 |
+
uvicorn[standard]
|
3 |
+
torch
|
4 |
+
torchvision
|
5 |
+
transformers
|
6 |
+
pillow
|
7 |
+
numpy
|
8 |
+
huggingface_hub
|
9 |
+
pydicom
|
10 |
+
python-multipart
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|