mcsabai commited on
Commit
710fe20
1 Parent(s): b57c5d8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -16,9 +16,9 @@ widget:
16
  huBERT base model (cased) fine-tuned on SQuADv2 (NEW!)
17
 
18
  - huBert model + Tokenizer: https://huggingface.co/SZTAKI-HLT/hubert-base-cc
19
- - Hungarian SQUAD v2 dataset: Machine Translated SQuAD dataset (Google Translate API)
20
 
21
- <p> <i> "SQuAD2.0 combines the 100,000 questions in SQuAD1.1 with over 50,000 unanswerable questions written adversarially by crowdworkers to look similar to answerable ones. To do well on SQuAD2.0, systems must not only answer questions when possible, but also determine when no answer is supported by the paragraph and abstain from answering."[1] </i> </p>
22
 
23
  ## Model in action
24
  - Fast usage with pipelines:
@@ -41,8 +41,8 @@ print(predictions)
41
  # {'score': 0.9892364144325256, 'start': 16, 'end': 26, 'answer': 'Budapesten'}
42
  ```
43
  Two important parameter:
44
- - <p> topk (int, optional, defaults to 1) — The number of answers to return (will be chosen by order of likelihood). Note that we return less than topk answers if there are not enough options available within the context. </p>
45
- - <p> handle_impossible_answer (bool, optional, defaults to False): Whether or not we accept impossible as an answer. </p>
46
 
47
 
48
  [1] https://rajpurkar.github.io/SQuAD-explorer/
 
16
  huBERT base model (cased) fine-tuned on SQuADv2 (NEW!)
17
 
18
  - huBert model + Tokenizer: https://huggingface.co/SZTAKI-HLT/hubert-base-cc
19
+ - Hungarian SQUADv2 dataset: Machine Translated SQuAD dataset (Google Translate API)
20
 
21
+ <p> <i> "SQuAD2.0 combines the 100,000 questions in SQuAD1.1 with over 50,000 unanswerable questions written adversarially by crowdworkers to look similar to answerable ones. To do well on SQuAD2.0, systems must not only answer questions when possible, but also determine when no answer is supported by the paragraph and abstain from answering.[1]" </i> </p>
22
 
23
  ## Model in action
24
  - Fast usage with pipelines:
 
41
  # {'score': 0.9892364144325256, 'start': 16, 'end': 26, 'answer': 'Budapesten'}
42
  ```
43
  Two important parameter:
44
+ - <p> <b> topk </b> (int, optional, defaults to 1) — The number of answers to return (will be chosen by order of likelihood). Note that we return less than topk answers if there are not enough options available within the context. </p>
45
+ - <p> <b> handle_impossible_answer </b> (bool, optional, defaults to False): Whether or not we accept impossible as an answer. </p>
46
 
47
 
48
  [1] https://rajpurkar.github.io/SQuAD-explorer/