josedolot commited on
Commit
31ca00e
·
1 Parent(s): f4dbf4b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -1,10 +1,11 @@
1
  import os
 
 
 
2
  import gradio as gr
3
  from PIL import Image
4
  import torch
5
 
6
- os.system('python3 -m pip install -r requirements_manual.txt')
7
-
8
  os.system('mkdir weights')
9
  os.system('curl -L -o weights/hybridnets.pth https://github.com/datvuthanh/HybridNets/releases/download/v1.0/hybridnets.pth')
10
 
 
1
  import os
2
+
3
+ os.system('python3 -m pip install -r requirements_manual.txt')
4
+
5
  import gradio as gr
6
  from PIL import Image
7
  import torch
8
 
 
 
9
  os.system('mkdir weights')
10
  os.system('curl -L -o weights/hybridnets.pth https://github.com/datvuthanh/HybridNets/releases/download/v1.0/hybridnets.pth')
11