Mizuiro-sakura
commited on
Commit
·
4118b3b
1
Parent(s):
f62bea0
Update README.md
Browse files
README.md
CHANGED
@@ -30,9 +30,9 @@ You could use this model for Question-Answering tasks.
|
|
30 |
please execute this code.
|
31 |
```python
|
32 |
import torch
|
33 |
-
from transformers import
|
34 |
|
35 |
-
tokenizer =
|
36 |
model=LukeForQuestionAnswering.from_pretrained('Mizuiro-sakura/luke-japanese-base-finetuned-QA') # 学習済みモデルの読み込み
|
37 |
text={
|
38 |
'context':'私の名前はEIMIです。好きな食べ物は苺です。 趣味は皆さんと会話することです。',
|
|
|
30 |
please execute this code.
|
31 |
```python
|
32 |
import torch
|
33 |
+
from transformers import AutoTokenizer, LukeForQuestionAnswering
|
34 |
|
35 |
+
tokenizer = AutoTokenizer.from_pretrained('Mizuiro-sakura/luke-japanese-base-finetuned-QA')
|
36 |
model=LukeForQuestionAnswering.from_pretrained('Mizuiro-sakura/luke-japanese-base-finetuned-QA') # 学習済みモデルの読み込み
|
37 |
text={
|
38 |
'context':'私の名前はEIMIです。好きな食べ物は苺です。 趣味は皆さんと会話することです。',
|