Den4ikAI commited on
Commit
bf2d4bd
·
1 Parent(s): 4635e87

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -3
README.md CHANGED
@@ -2,12 +2,18 @@
2
  license: mit
3
  ---
4
 
5
- ruBert-large обученный на squad
6
  from transformers import pipeline
7
-
8
  qa_pipeline = pipeline(
9
  "question-answering",
10
  model="Den4ikAI/rubert-large-squad",
11
  tokenizer="Den4ikAI/rubert-large-squad"
12
  )
13
-
 
 
 
 
 
 
 
 
2
  license: mit
3
  ---
4
 
5
+ ```python
6
  from transformers import pipeline
 
7
  qa_pipeline = pipeline(
8
  "question-answering",
9
  model="Den4ikAI/rubert-large-squad",
10
  tokenizer="Den4ikAI/rubert-large-squad"
11
  )
12
+ predictions = qa_pipeline({
13
+ 'context': "Пушкин родился 6 июля 1799 года",
14
+ 'question': "Когда родился Пушкин?"
15
+ })
16
+ print(predictions)
17
+ # output:
18
+ #{'score': 0.9613797664642334, 'start': 15, 'end': 31, 'answer': '6 июля 1799 года'}
19
+ ```