Spaces:
Sleeping
Sleeping
Arius XI commited on
Commit ·
9a3dff5
1
Parent(s): 1378dc4
Update app.py
Browse files
app.py
CHANGED
|
@@ -17,4 +17,4 @@ sent1=grad.Textbox(lines=1, label="Sentence1", placeholder="Text in English")
|
|
| 17 |
sent2=grad.Textbox(lines=1, label="Sentence2", placeholder="Text in English")
|
| 18 |
|
| 19 |
out=grad.Textbox(lines=1, label="Whether sentence2 is deductible from sentence1")
|
| 20 |
-
grad.Interface(
|
|
|
|
| 17 |
sent2=grad.Textbox(lines=1, label="Sentence2", placeholder="Text in English")
|
| 18 |
|
| 19 |
out=grad.Textbox(lines=1, label="Whether sentence2 is deductible from sentence1")
|
| 20 |
+
grad.Interface(text2text_deductible, inputs=[sent1,sent2], outputs=out).launch()
|