Update README.md
Browse files
README.md
CHANGED
@@ -13,7 +13,11 @@ This is a basic implementation of the multilingual model ["ixambert-base-cased"]
|
|
13 |
|
14 |
### Outputs
|
15 |
|
16 |
-
The model predicts a span of text from the context and a score for the probability for that span to be the correct answer.
|
|
|
|
|
|
|
|
|
17 |
|
18 |
|
19 |
### How to use
|
|
|
13 |
|
14 |
### Outputs
|
15 |
|
16 |
+
The model predicts a span of text from the context and a score for the probability for that span to be the correct answer. For example:
|
17 |
+
|
18 |
+
```python
|
19 |
+
{'score': 0.9667195081710815, 'start': 101, 'end': 105, 'answer': '1820'}
|
20 |
+
```
|
21 |
|
22 |
|
23 |
### How to use
|