Update app.py
Browse files
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 |
|