Update app.py
Browse files
app.py
CHANGED
|
@@ -18,7 +18,7 @@ def classify_text(txt):
|
|
| 18 |
|
| 19 |
text = gr.inputs.Textbox(lines=2, label='당신의 증상을 "영어로" 작성해 주세요')
|
| 20 |
label = gr.outputs.Label()
|
| 21 |
-
examples = ['I am always thirsty and less activity', 'I have fever and cough', 'My face is so pale', 'I have skin rashes after eating crabs', 'I can
|
| 22 |
|
| 23 |
intf = gr.Interface(fn=classify_text, inputs=text, outputs=label, examples=examples, description=description)
|
| 24 |
intf.launch(inline=False)
|
|
|
|
| 18 |
|
| 19 |
text = gr.inputs.Textbox(lines=2, label='당신의 증상을 "영어로" 작성해 주세요')
|
| 20 |
label = gr.outputs.Label()
|
| 21 |
+
examples = ['I am always thirsty and less activity', 'I have fever and cough', 'My face is so pale', 'I have skin rashes after eating crabs', 'I can not sleep well in the night']
|
| 22 |
|
| 23 |
intf = gr.Interface(fn=classify_text, inputs=text, outputs=label, examples=examples, description=description)
|
| 24 |
intf.launch(inline=False)
|