Update README.md
Browse files
README.md
CHANGED
@@ -40,7 +40,7 @@ Mateo Kovacic sealed the win as he volleyed in from Mudryk's header.
|
|
40 |
The sliding Foxes, who ended with 10 men following Wout Faes' late dismissal for a second booking, now just sit one point outside the relegation zone.
|
41 |
""".replace('\n', ' ')
|
42 |
>>> question = "Who had a goal ruled out for offside?"
|
43 |
-
>>> options = ['
|
44 |
|
45 |
>>> inputs = prepare_answering_input(
|
46 |
tokenizer=tokenizer, question=question,
|
@@ -51,7 +51,7 @@ The sliding Foxes, who ended with 10 men following Wout Faes' late dismissal for
|
|
51 |
>>> selected_answer = options[np.argmax(prob)]
|
52 |
|
53 |
>>> print(prob)
|
54 |
-
[0.
|
55 |
>>> print(selected_answer)
|
56 |
Joao Felix
|
57 |
```
|
|
|
40 |
The sliding Foxes, who ended with 10 men following Wout Faes' late dismissal for a second booking, now just sit one point outside the relegation zone.
|
41 |
""".replace('\n', ' ')
|
42 |
>>> question = "Who had a goal ruled out for offside?"
|
43 |
+
>>> options = ['Ricardo Pereira', 'Ben Chilwell', 'Joao Felix', 'The Foxes']
|
44 |
|
45 |
>>> inputs = prepare_answering_input(
|
46 |
tokenizer=tokenizer, question=question,
|
|
|
51 |
>>> selected_answer = options[np.argmax(prob)]
|
52 |
|
53 |
>>> print(prob)
|
54 |
+
[0.02417609840631485, 0.04619544371962547, 0.7678786516189575, 0.16174985468387604]
|
55 |
>>> print(selected_answer)
|
56 |
Joao Felix
|
57 |
```
|