Mizuiro-sakura
commited on
Commit
·
f62bea0
1
Parent(s):
2075afd
Update README.md
Browse files
README.md
CHANGED
@@ -40,7 +40,6 @@ text={
|
|
40 |
}
|
41 |
|
42 |
input_ids=tokenizer.encode(text['question'],text['context']) # tokenizerで形態素解析しつつコードに変換する
|
43 |
-
con=tokenizer.encode(text['question'])
|
44 |
output= model(torch.tensor([input_ids])) # 学習済みモデルを用いて解析
|
45 |
prediction = tokenizer.decode(input_ids[torch.argmax(output.start_logits): torch.argmax(output.end_logits)]) # 答えに該当する部分を抜き取る
|
46 |
print(prediction)
|
|
|
40 |
}
|
41 |
|
42 |
input_ids=tokenizer.encode(text['question'],text['context']) # tokenizerで形態素解析しつつコードに変換する
|
|
|
43 |
output= model(torch.tensor([input_ids])) # 学習済みモデルを用いて解析
|
44 |
prediction = tokenizer.decode(input_ids[torch.argmax(output.start_logits): torch.argmax(output.end_logits)]) # 答えに該当する部分を抜き取る
|
45 |
print(prediction)
|