Update README.md
Browse files
README.md
CHANGED
|
@@ -77,8 +77,8 @@ def generate(context: str, question: str, max_new_tokens: int = 300) -> str:
|
|
| 77 |
```python
|
| 78 |
print(
|
| 79 |
generate(
|
| 80 |
-
context="Cats are animal. dogs are animal. human are not animal. animal are
|
| 81 |
-
question="dogs
|
| 82 |
)
|
| 83 |
)
|
| 84 |
```
|
|
@@ -90,7 +90,7 @@ print(
|
|
| 90 |
cat(animal)
|
| 91 |
dog(animal)
|
| 92 |
¬human(animal)
|
| 93 |
-
∀x (animal(x) →
|
| 94 |
|
| 95 |
[CONCLUSION_FOL]
|
| 96 |
awesome(dog)
|
|
|
|
| 77 |
```python
|
| 78 |
print(
|
| 79 |
generate(
|
| 80 |
+
context="Cats are animal. dogs are animal. human are not animal. animal are awesome",
|
| 81 |
+
question="dogs awesome?"
|
| 82 |
)
|
| 83 |
)
|
| 84 |
```
|
|
|
|
| 90 |
cat(animal)
|
| 91 |
dog(animal)
|
| 92 |
¬human(animal)
|
| 93 |
+
∀x (animal(x) → awesome(x))
|
| 94 |
|
| 95 |
[CONCLUSION_FOL]
|
| 96 |
awesome(dog)
|