Instructions to use RuHae/HAPO with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use RuHae/HAPO with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="RuHae/HAPO")# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("RuHae/HAPO") model = AutoModelForQuestionAnswering.from_pretrained("RuHae/HAPO") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
| 1 |
---
|
| 2 |
-
license:
|
| 3 |
-
datasets:
|
| 4 |
-
- squad_v2
|
| 5 |
tags:
|
| 6 |
- question-answering
|
| 7 |
- qa
|
|
|
|
|
|
|
| 8 |
metrics:
|
| 9 |
-
-
|
|
|
|
|
|
|
| 10 |
---
|
|
|
|
| 1 |
---
|
| 2 |
+
license: apache-2.0
|
|
|
|
|
|
|
| 3 |
tags:
|
| 4 |
- question-answering
|
| 5 |
- qa
|
| 6 |
+
datasets:
|
| 7 |
+
- squad
|
| 8 |
metrics:
|
| 9 |
+
- squad
|
| 10 |
+
language:
|
| 11 |
+
- en
|
| 12 |
---
|