Spaces:
Build error
Build error
First model version
Browse files- app.py +2 -2
- requirements.txt +1 -2
app.py
CHANGED
@@ -2,8 +2,8 @@ import os
|
|
2 |
os.system('pip install --upgrade --no-cache-dir gdown')
|
3 |
os.system('gdown -O ./output/ctw/ 1Ajslu_9WisuZ2nJGzE6qbD87aK6_ozzA')
|
4 |
os.system('pip install "git+https://github.com/philferriere/cocoapi.git#egg=pycocotools&subdirectory=PythonAPI"')
|
5 |
-
|
6 |
-
os.system('pip install git+https://github.com/Cyril-Sterling/ContourNet')
|
7 |
|
8 |
import cv2
|
9 |
import pandas as pd
|
|
|
2 |
os.system('pip install --upgrade --no-cache-dir gdown')
|
3 |
os.system('gdown -O ./output/ctw/ 1Ajslu_9WisuZ2nJGzE6qbD87aK6_ozzA')
|
4 |
os.system('pip install "git+https://github.com/philferriere/cocoapi.git#egg=pycocotools&subdirectory=PythonAPI"')
|
5 |
+
os.system('python setup.py build develop --user')
|
6 |
+
#os.system('pip install git+https://github.com/Cyril-Sterling/ContourNet')
|
7 |
|
8 |
import cv2
|
9 |
import pandas as pd
|
requirements.txt
CHANGED
@@ -5,5 +5,4 @@ matplotlib
|
|
5 |
tqdm
|
6 |
opencv-python
|
7 |
torch==1.4.0
|
8 |
-
torchvision==0.5.0
|
9 |
-
pytorch-extension
|
|
|
5 |
tqdm
|
6 |
opencv-python
|
7 |
torch==1.4.0
|
8 |
+
torchvision==0.5.0
|
|