Spaces:
Runtime error
Runtime error
TIMAX-159
commited on
Commit
Β·
2263680
1
Parent(s):
f9b0cc9
new
Browse files
app.py
CHANGED
@@ -23,10 +23,12 @@ demo = gr.Interface(fn=logic,
|
|
23 |
examples=[
|
24 |
'ALLx. Student(x) IMPLY Smart(x)',
|
25 |
'EXISTx. TShirt(x) AND Buy(Adam, x)',
|
26 |
-
'ALLx. Animal(x) AND Fluffy(x) IMPLY Rabbit(x) OR Sheep(x)'
|
|
|
27 |
],
|
28 |
title="Logic Translator",
|
29 |
-
description="
|
|
|
30 |
live=True)
|
31 |
|
32 |
demo.launch(share=True)
|
|
|
23 |
examples=[
|
24 |
'ALLx. Student(x) IMPLY Smart(x)',
|
25 |
'EXISTx. TShirt(x) AND Buy(Adam, x)',
|
26 |
+
'ALLx. (Animal(x) AND Fluffy(x)) IMPLY (Rabbit(x) OR Sheep(x))',
|
27 |
+
'(GoDowntown(James) AND NOTCarry(James, Bag)) EQUIV Buy(James, Book)'
|
28 |
],
|
29 |
title="Logic Translator",
|
30 |
+
description="Type English for logic symbols! \
|
31 |
+
β§:AND, β¨:OR, Β¬:NOT, β:IMPLY, β:EQUIV, β:ALL, β:EXIST",
|
32 |
live=True)
|
33 |
|
34 |
demo.launch(share=True)
|