Andreas-w commited on
Commit
908e5dc
·
1 Parent(s): 0cc7945

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -7,8 +7,11 @@ def funksjon(input_img):
7
  #Må inporterer modellen fra API på huggingface.co
8
 
9
  #imgPred = model.fit(input_img)
10
- imgPred = input_img
11
- return imgPred
 
 
 
12
 
13
 
14
  demo = gr.Interface(funksjon, gr.Image(), "image")
 
7
  #Må inporterer modellen fra API på huggingface.co
8
 
9
  #imgPred = model.fit(input_img)
10
+ learn.load('stage-1')
11
+ predictions = model.predict(img_array)
12
+ #imgPred = input_img
13
+
14
+ return predictions
15
 
16
 
17
  demo = gr.Interface(funksjon, gr.Image(), "image")