yeop commited on
Commit
e38d5b2
1 Parent(s): 9660cb4

model name change

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -21,8 +21,8 @@ NOTE: You can try the model through the [Ainize DEMO](https://main-klue-mrc-bert
21
  ```python
22
  from transformers import AutoModelForQuestionAnswering, AutoTokenizer
23
 
24
- tokenizer = AutoTokenizer.from_pretrained("./mrc-bert-base")
25
- model = AutoModelForQuestionAnswering.from_pretrained("./mrc-bert-base")
26
 
27
  context = "your context"
28
  question = "your question"
 
21
  ```python
22
  from transformers import AutoModelForQuestionAnswering, AutoTokenizer
23
 
24
+ tokenizer = AutoTokenizer.from_pretrained("ainize/klue-bert-base-mrc")
25
+ model = AutoModelForQuestionAnswering.from_pretrained("ainize/klue-bert-base-mrc")
26
 
27
  context = "your context"
28
  question = "your question"