Update README.md
Browse files
README.md
CHANGED
@@ -46,6 +46,11 @@ question = "What is a tropical cyclone?"
|
|
46 |
result = infer(question)
|
47 |
answer = processAnswer(question, result)
|
48 |
print('Question: ', question)
|
49 |
-
print('Answer: ', answer)
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
```
|
|
|
46 |
result = infer(question)
|
47 |
answer = processAnswer(question, result)
|
48 |
print('Question: ', question)
|
49 |
+
print('Answer: ', answer)
|
50 |
+
|
51 |
+
# Output
|
52 |
+
|
53 |
+
>>> Question: What is a tropical cyclone?
|
54 |
+
>>> Answer: The cyclone is named after the climber Edmond Halley, who described it as the "most powerful cyclone of the Atlantic".
|
55 |
|
56 |
```
|