Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,10 @@ import torch
|
|
3 |
|
4 |
print(torch.__version__)
|
5 |
torch_ver, cuda_ver = torch.__version__.split('+')
|
6 |
-
os.system(
|
|
|
|
|
|
|
7 |
os.system('wget -nv -c https://download.openmmlab.com/mmocr/data/wildreceipt.tar; mkdir -p data; tar -xf wildreceipt.tar --directory data; rm -f wildreceipt.tar')
|
8 |
|
9 |
import datetime
|
|
|
3 |
|
4 |
print(torch.__version__)
|
5 |
torch_ver, cuda_ver = torch.__version__.split('+')
|
6 |
+
os.system('pip list')
|
7 |
+
os.system(f'pip install opencv-contrib-python==4.5.5.62 --no-cache-dir')
|
8 |
+
os.system('pip list')
|
9 |
+
os.system(f'pip install pycocotools==2.0.0 mmdet mmcv-full==1.5.0 -f https://download.openmmlab.com/mmcv/dist/{cuda_ver}/torch1.10.0/index.html --no-cache-dir')
|
10 |
os.system('wget -nv -c https://download.openmmlab.com/mmocr/data/wildreceipt.tar; mkdir -p data; tar -xf wildreceipt.tar --directory data; rm -f wildreceipt.tar')
|
11 |
|
12 |
import datetime
|