tomofi commited on
Commit
a26aabd
1 Parent(s): 53cda7d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
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(f'pip install opencv-contrib-python==4.5.5.62 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')
 
 
 
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