Spaces:
Build error
Build error
bold title
Browse files
app.py
CHANGED
@@ -30,8 +30,12 @@ def zs(premise,hypothesis):
|
|
30 |
|
31 |
|
32 |
with gr.Blocks() as demo:
|
33 |
-
gr.
|
34 |
-
|
|
|
|
|
|
|
|
|
35 |
with gr.Row():
|
36 |
premise = gr.Textbox(label="Premise",placeholder = "Roger Federer is an amazing Tennis Player")
|
37 |
hypothesis = gr.Textbox(label="Hypothesis", placeholder = "The stance to Roger Federer is positive.")
|
|
|
30 |
|
31 |
|
32 |
with gr.Blocks() as demo:
|
33 |
+
gr.Examples(
|
34 |
+
examples = [["Roger Federer is an amazing Tennis Player","The stance to Roger Federer is positive."]],
|
35 |
+
inputs = [["Roger Federer is an amazing Tennis Player","The stance to Roger Federer is positive."]]
|
36 |
+
)
|
37 |
+
gr.Markdown(f"# {title}")
|
38 |
+
gr.Markdown(f"## {description}")
|
39 |
with gr.Row():
|
40 |
premise = gr.Textbox(label="Premise",placeholder = "Roger Federer is an amazing Tennis Player")
|
41 |
hypothesis = gr.Textbox(label="Hypothesis", placeholder = "The stance to Roger Federer is positive.")
|