Question Answering
Transformers
TensorBoard
Safetensors
English
deberta-v2
Generated from Trainer
Eval Results (legacy)
Instructions to use kxx-kkk/FYP_qa_final with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use kxx-kkk/FYP_qa_final with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="kxx-kkk/FYP_qa_final")# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("kxx-kkk/FYP_qa_final") model = AutoModelForQuestionAnswering.from_pretrained("kxx-kkk/FYP_qa_final", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -74,9 +74,7 @@ The dataset used for training is listed below according to training sequences:
|
|
| 74 |
## Training procedure
|
| 75 |
|
| 76 |
The training approach uses the fine-tuning approach of transfer learning on the pre-trained model to perform NLP QA tasks.
|
| 77 |
-
|
| 78 |
Each time a model was trained with one dataset only and saved as the PTMs for the next training.
|
| 79 |
-
|
| 80 |
This model is the last model that trained with [MRQA(test split)](https://huggingface.co/datasets/mrqa).
|
| 81 |
|
| 82 |
### Training hyperparameters
|
|
|
|
| 74 |
## Training procedure
|
| 75 |
|
| 76 |
The training approach uses the fine-tuning approach of transfer learning on the pre-trained model to perform NLP QA tasks.
|
|
|
|
| 77 |
Each time a model was trained with one dataset only and saved as the PTMs for the next training.
|
|
|
|
| 78 |
This model is the last model that trained with [MRQA(test split)](https://huggingface.co/datasets/mrqa).
|
| 79 |
|
| 80 |
### Training hyperparameters
|