Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ def text_classification(text):
|
|
25 |
examples=["This is a question", "This is a bug", "This is an enhancement" ]
|
26 |
|
27 |
io = gr.Interface(fn=text_classification,
|
28 |
-
inputs= gr.Textbox(lines=
|
29 |
outputs="label",
|
30 |
title="Issue Report Classification",
|
31 |
description="Enter a text of an issue and see whether it is a bug, feature or question?",
|
|
|
25 |
examples=["This is a question", "This is a bug", "This is an enhancement" ]
|
26 |
|
27 |
io = gr.Interface(fn=text_classification,
|
28 |
+
inputs= gr.Textbox(lines=3, label="Text", placeholder="Enter the text of the issue here:"),
|
29 |
outputs="label",
|
30 |
title="Issue Report Classification",
|
31 |
description="Enter a text of an issue and see whether it is a bug, feature or question?",
|