Instructions to use AndrewChar/model-QA-5-epoch-RU with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AndrewChar/model-QA-5-epoch-RU with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="AndrewChar/model-QA-5-epoch-RU")# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("AndrewChar/model-QA-5-epoch-RU") model = AutoModelForQuestionAnswering.from_pretrained("AndrewChar/model-QA-5-epoch-RU", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
7e2fd2a
1
Parent(s): 8481faf
Update README.md
Browse files
README.md
CHANGED
|
@@ -24,7 +24,7 @@ It achieves the following results on the evaluation set:
|
|
| 24 |
## Model description
|
| 25 |
|
| 26 |
Модель отвечающая на вопрос по контектсу
|
| 27 |
-
|
| 28 |
## Intended uses & limitations
|
| 29 |
|
| 30 |
Контекст должен содержать не более 512 токенов
|
|
|
|
| 24 |
## Model description
|
| 25 |
|
| 26 |
Модель отвечающая на вопрос по контектсу
|
| 27 |
+
это дипломная работа
|
| 28 |
## Intended uses & limitations
|
| 29 |
|
| 30 |
Контекст должен содержать не более 512 токенов
|