sjrhuschlee commited on
Commit
54d10aa
1 Parent(s): f030715

Update README.md (#2)

Browse files

- Update README.md (95f00f71f5d8243c2524ce1c7c961ced7054cd8d)

Files changed (1) hide show
  1. README.md +3 -4
README.md CHANGED
@@ -34,7 +34,7 @@ This is the [deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large
34
 
35
 
36
  ## Overview
37
- **Language model:** roberta-base
38
  **Language:** English
39
  **Downstream-task:** Extractive QA
40
  **Training data:** SQuAD 2.0
@@ -62,11 +62,10 @@ max_query_length=64
62
  ### In Haystack
63
  Haystack is an NLP framework by deepset. You can use this model in a Haystack pipeline to do question answering at scale (over many documents). To load the model in [Haystack](https://github.com/deepset-ai/haystack/):
64
  ```python
65
- reader = FARMReader(model_name_or_path="deepset/roberta-base-squad2")
66
  # or
67
- reader = TransformersReader(model_name_or_path="deepset/roberta-base-squad2",tokenizer="deepset/roberta-base-squad2")
68
  ```
69
- For a complete example of ``roberta-base-squad2`` being used for Question Answering, check out the [Tutorials in Haystack Documentation](https://haystack.deepset.ai/tutorials/first-qa-system)
70
 
71
  ### In Transformers
72
  ```python
34
 
35
 
36
  ## Overview
37
+ **Language model:** deberta-v3-large
38
  **Language:** English
39
  **Downstream-task:** Extractive QA
40
  **Training data:** SQuAD 2.0
62
  ### In Haystack
63
  Haystack is an NLP framework by deepset. You can use this model in a Haystack pipeline to do question answering at scale (over many documents). To load the model in [Haystack](https://github.com/deepset-ai/haystack/):
64
  ```python
65
+ reader = FARMReader(model_name_or_path="deepset/deberta-v3-large-squad2")
66
  # or
67
+ reader = TransformersReader(model_name_or_path="deepset/deberta-v3-large-squad2",tokenizer="deepset/deberta-v3-large-squad2")
68
  ```
 
69
 
70
  ### In Transformers
71
  ```python