Nada2001 commited on
Commit
c5934f3
·
1 Parent(s): c7d2dbb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -4,7 +4,7 @@ import os
4
 
5
  def getResult(filename):
6
  model_name='best.pt'
7
- model = torch.hub.load( "hubconf.py",'custom', source='local', path = model_name, force_reload = True)
8
  img = "/content/"+filename+""
9
  results = model(img)
10
  return results
@@ -14,4 +14,4 @@ if uploaded_file is not None:
14
  image = uploaded_file.read()
15
  filename = uploaded_file.name
16
  resulted_img = getResult(filename)
17
- img = st.image(resulted_img, caption='Sunrise by the mountains', use_column_width=True)
 
4
 
5
  def getResult(filename):
6
  model_name='best.pt'
7
+ model = torch.hub.load( 'custom', source='local', path = model_name, force_reload = True)
8
  img = "/content/"+filename+""
9
  results = model(img)
10
  return results
 
14
  image = uploaded_file.read()
15
  filename = uploaded_file.name
16
  resulted_img = getResult(filename)
17
+ img = st.image(image, caption='Sunrise by the mountains', use_column_width=True)