Update app.py
Browse files
app.py
CHANGED
@@ -12,9 +12,18 @@ gr.Interface(
|
|
12 |
fn=wrap_classifier,
|
13 |
title="Zero-shot Classification",
|
14 |
inputs=[
|
15 |
-
gr.inputs.Textbox(
|
16 |
-
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
],
|
19 |
outputs=[
|
20 |
gr.outputs.Textbox(label="Label")
|
|
|
12 |
fn=wrap_classifier,
|
13 |
title="Zero-shot Classification",
|
14 |
inputs=[
|
15 |
+
gr.inputs.Textbox(
|
16 |
+
lines=5,
|
17 |
+
label="Text to classify",
|
18 |
+
placeholder="Sneaky Credit Card Tactics Keep an eye on your credit card issuers -- they may be about to raise your rates."
|
19 |
+
),
|
20 |
+
gr.inputs.Textbox(
|
21 |
+
lines=1,
|
22 |
+
label="Candidate labels separated with commas (no spaces)",
|
23 |
+
default="World,Sports,Business,Sci/Tech",
|
24 |
+
placeholder="World,Sports,Business,Sci/Tech",
|
25 |
+
),
|
26 |
+
gr.inputs.Textbox(lines=1, label="Template", default="The topic of this text is {}.", placeholder="The topic of this text is {}.")
|
27 |
],
|
28 |
outputs=[
|
29 |
gr.outputs.Textbox(label="Label")
|