TIMAX commited on
Commit
c34bf05
β€’
1 Parent(s): a90a03e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -24,13 +24,14 @@ demo = gr.Interface(fn=logic,
24
  inputs="text", outputs="text",
25
  examples=[
26
  'ALLx (Student(x) IMPLY Smart(x))',
27
- 'EXISTx (TShirt(x) AND Buy(Adam, x))',
28
  'ALLx ((Animal(x) AND Fluffy(x)) IMPLY (Rabbit(x) OR Sheep(x)))',
29
  '(GoDowntown(james) AND NOTCarry(james, bag)) EQUIV Buy(james, book)',
30
  'ALLx (Project(x) IMPLY (WrittenIn(x, python) XR WrittenIn(x, c++)))'
31
  ],
32
  title="Logic Translator",
33
- description="Type English for logic symbols! \n ∧:AND, ∨:OR, Β¬:NOT, βŠ•:XR, β†’:IMPLY, ↔:EQUIV, βˆ€:ALL, βˆƒ:EXIST",
 
34
  live=True)
35
 
36
  demo.launch()
 
24
  inputs="text", outputs="text",
25
  examples=[
26
  'ALLx (Student(x) IMPLY Smart(x))',
27
+ 'EXISTx (TShirt(x) AND Buy(adam, x))',
28
  'ALLx ((Animal(x) AND Fluffy(x)) IMPLY (Rabbit(x) OR Sheep(x)))',
29
  '(GoDowntown(james) AND NOTCarry(james, bag)) EQUIV Buy(james, book)',
30
  'ALLx (Project(x) IMPLY (WrittenIn(x, python) XR WrittenIn(x, c++)))'
31
  ],
32
  title="Logic Translator",
33
+ description="Type English for logic symbols!
34
+ ∧:AND, ∨:OR, Β¬:NOT, βŠ•:XR, β†’:IMPLY, ↔:EQUIV, βˆ€:ALL, βˆƒ:EXIST",
35
  live=True)
36
 
37
  demo.launch()