mrm8488 commited on
Commit
073ff5f
·
1 Parent(s): 9d96fe1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,4 +7,4 @@ def classify(text):
7
  cls= pipeline("text-classification", model=model)
8
  return cls(text, return_all_scores=True)
9
 
10
- gr.Interface(fn=classify, inputs=["textbox"], outputs="text", debug=True).launch()
 
7
  cls= pipeline("text-classification", model=model)
8
  return cls(text, return_all_scores=True)
9
 
10
+ gr.Interface(fn=classify, inputs=["textbox"], outputs="text").launch(debug=True)