Spaces:
Sleeping
Sleeping
fix bug
Browse files- .ipynb_checkpoints/app-checkpoint.py +1 -1
- app.py +1 -1
.ipynb_checkpoints/app-checkpoint.py
CHANGED
@@ -32,7 +32,7 @@ s1 = gr.Textbox(value="One",label="Sentence 1")
|
|
32 |
s2 = gr.Textbox(value="Two",label="Sentence 2")
|
33 |
|
34 |
demo = gr.Interface(fn=infer, inputs=[s1,s2], outputs="text",
|
35 |
-
examples=gr.Examples(examples=[[["one","two"]],],
|
36 |
inputs=[s1,s2]),
|
37 |
title=title,
|
38 |
description=desc,
|
|
|
32 |
s2 = gr.Textbox(value="Two",label="Sentence 2")
|
33 |
|
34 |
demo = gr.Interface(fn=infer, inputs=[s1,s2], outputs="text",
|
35 |
+
examples=gr.Examples(examples=[[["one"],["two"]],],
|
36 |
inputs=[s1,s2]),
|
37 |
title=title,
|
38 |
description=desc,
|
app.py
CHANGED
@@ -32,7 +32,7 @@ s1 = gr.Textbox(value="One",label="Sentence 1")
|
|
32 |
s2 = gr.Textbox(value="Two",label="Sentence 2")
|
33 |
|
34 |
demo = gr.Interface(fn=infer, inputs=[s1,s2], outputs="text",
|
35 |
-
examples=gr.Examples(examples=[[["one","two"]],],
|
36 |
inputs=[s1,s2]),
|
37 |
title=title,
|
38 |
description=desc,
|
|
|
32 |
s2 = gr.Textbox(value="Two",label="Sentence 2")
|
33 |
|
34 |
demo = gr.Interface(fn=infer, inputs=[s1,s2], outputs="text",
|
35 |
+
examples=gr.Examples(examples=[[["one"],["two"]],],
|
36 |
inputs=[s1,s2]),
|
37 |
title=title,
|
38 |
description=desc,
|