Instructions to use thatdramebaazguy/roberta-base-squad with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use thatdramebaazguy/roberta-base-squad with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="thatdramebaazguy/roberta-base-squad")# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("thatdramebaazguy/roberta-base-squad") model = AutoModelForQuestionAnswering.from_pretrained("thatdramebaazguy/roberta-base-squad") - Notebooks
- Google Colab
- Kaggle
Commit 路
a7a26fd
1
Parent(s): 50297ec
Update README.md
Browse files
README.md
CHANGED
|
@@ -53,8 +53,8 @@ Total train batch size (w. parallel, distributed & accumulation) = 64
|
|
| 53 |
|
| 54 |
### Eval on MoviesQA
|
| 55 |
- eval_samples = 5032
|
| 56 |
-
- exact_match =
|
| 57 |
-
- f1 =
|
| 58 |
|
| 59 |
Github Repo:
|
| 60 |
- [Domain-Adaptation Project](https://github.com/adityaarunsinghal/Domain-Adaptation/)
|
|
|
|
| 53 |
|
| 54 |
### Eval on MoviesQA
|
| 55 |
- eval_samples = 5032
|
| 56 |
+
- exact_match = 51.6494
|
| 57 |
+
- f1 = 68.2615
|
| 58 |
|
| 59 |
Github Repo:
|
| 60 |
- [Domain-Adaptation Project](https://github.com/adityaarunsinghal/Domain-Adaptation/)
|