Fahad Ebrahim commited on
Commit
9ee27c4
·
1 Parent(s): c45e007

Add share=true

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -30,10 +30,10 @@ examples=["This is a question", "This is a bug", "This is an enhancement" ]
30
  io = gr.Interface(fn=text_classification,
31
  inputs= gr.Textbox(lines=20, label="Text", placeholder="Enter title here..."),
32
  outputs="label",
33
- title="Text Classification",
34
- description="Enter a text and see the text classification result!",
35
  examples=examples)
36
 
37
- io.launch()
38
 
39
 
 
30
  io = gr.Interface(fn=text_classification,
31
  inputs= gr.Textbox(lines=20, label="Text", placeholder="Enter title here..."),
32
  outputs="label",
33
+ title="Issue Report Classification",
34
+ description="Enter a text of an issue and see whether it is a bug, enhancement or question?",
35
  examples=examples)
36
 
37
+ io.launch(share=True)
38
 
39