MarcBrun commited on
Commit
103f08f
1 Parent(s): bafffc8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -1
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