Instructions to use ptran74/DSPFirst-Finetuning-4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ptran74/DSPFirst-Finetuning-4 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="ptran74/DSPFirst-Finetuning-4")# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("ptran74/DSPFirst-Finetuning-4") model = AutoModelForQuestionAnswering.from_pretrained("ptran74/DSPFirst-Finetuning-4") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -52,7 +52,7 @@ DatasetDict({
|
|
| 52 |
|
| 53 |
## Intended uses & limitations
|
| 54 |
|
| 55 |
-
This model is fine-tuned to answer questions from the DSPFirst textbook. I'm not really sure what I am doing so you should review
|
| 56 |
|
| 57 |
## Training and evaluation data
|
| 58 |
|
|
|
|
| 52 |
|
| 53 |
## Intended uses & limitations
|
| 54 |
|
| 55 |
+
This model is fine-tuned to answer questions from the DSPFirst textbook. I'm not really sure what I am doing so you should review before using it.
|
| 56 |
|
| 57 |
## Training and evaluation data
|
| 58 |
|