Spaces:
Running
on
T4
Running
on
T4
test
Browse files- Dockerfile +2 -1
- requirements.txt +13 -1
Dockerfile
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
-
FROM pengchuanzhang/pytorch:ubuntu20.04_torch1.9-cuda11.3-nccl2.9.9
|
|
|
2 |
|
3 |
|
4 |
WORKDIR /code
|
|
|
1 |
+
#FROM pengchuanzhang/pytorch:ubuntu20.04_torch1.9-cuda11.3-nccl2.9.9
|
2 |
+
FROM python:3.9
|
3 |
|
4 |
|
5 |
WORKDIR /code
|
requirements.txt
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
einops
|
2 |
shapely
|
3 |
timm
|
@@ -6,8 +10,16 @@ tensorboardX
|
|
6 |
ftfy
|
7 |
prettytable
|
8 |
pymongo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
sentence_transformers
|
10 |
-
fastcluster
|
11 |
openai
|
12 |
transformers==4.11
|
13 |
wandb
|
|
|
1 |
+
--extra-index-url https://download.pytorch.org/whl/cu113
|
2 |
+
torch==1.10.0+cu113
|
3 |
+
torchvision==0.11.0+cu113
|
4 |
+
numpy==1.23.3
|
5 |
einops
|
6 |
shapely
|
7 |
timm
|
|
|
10 |
ftfy
|
11 |
prettytable
|
12 |
pymongo
|
13 |
+
click
|
14 |
+
opencv-python
|
15 |
+
inflect
|
16 |
+
nltk
|
17 |
+
scipy
|
18 |
+
scikit-learn
|
19 |
+
pycocotools
|
20 |
+
transformers
|
21 |
+
pycocotools
|
22 |
sentence_transformers
|
|
|
23 |
openai
|
24 |
transformers==4.11
|
25 |
wandb
|