futranbg commited on
Commit
b645aad
Β·
1 Parent(s): a1b6cc2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,5 +9,5 @@ def classify(input):
9
  result = model.predict(input, k=5)
10
  return result
11
 
12
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
13
  iface.launch()
 
9
  result = model.predict(input, k=5)
10
  return result
11
 
12
+ iface = gr.Interface(fn=classify, inputs="text", outputs="text")
13
  iface.launch()