okite97 commited on
Commit
7f7c633
·
1 Parent(s): c47cc8f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -14,4 +14,5 @@ textbox1 = gr.Textbox(label="News Title" , lines=2)
14
  textbox2 = gr.Textbox(label="Excerpt:", placeholder="John Doe", lines=2)
15
  demo = gr.Interface(fn=predict_news, inputs = [textbox1, textbox2],
16
  outputs = 'text')
 
17
 
 
14
  textbox2 = gr.Textbox(label="Excerpt:", placeholder="John Doe", lines=2)
15
  demo = gr.Interface(fn=predict_news, inputs = [textbox1, textbox2],
16
  outputs = 'text')
17
+ demo.launch()
18