ByteBlaze commited on
Commit
e9e9010
1 Parent(s): f7d4173

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -87,7 +87,7 @@ def classify(text,choice):
87
 
88
  GUI = gr.Interface(
89
  inputs = [
90
- gr.Textxox(label = "Input" , placeholder = "Enter News Title here"),
91
  gr.Radio( choices = [("Naive Bayes",1) , ("Random Forest",2) , ("Support Vector Machine",3) ] , value = 1 , label = "Model") ],
92
  outputs = ['text'],
93
  fn = classify,
 
87
 
88
  GUI = gr.Interface(
89
  inputs = [
90
+ gr.Textbox(label = "Input" , placeholder = "Enter News Title here"),
91
  gr.Radio( choices = [("Naive Bayes",1) , ("Random Forest",2) , ("Support Vector Machine",3) ] , value = 1 , label = "Model") ],
92
  outputs = ['text'],
93
  fn = classify,