Instructions to use imamassi/fine-tuning-learning with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use imamassi/fine-tuning-learning with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="imamassi/fine-tuning-learning")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("imamassi/fine-tuning-learning") model = AutoModelForSequenceClassification.from_pretrained("imamassi/fine-tuning-learning") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,5 +9,5 @@ Label 3: Sci/Tech
|
|
| 9 |
Epoch Training Loss Validation Loss
|
| 10 |
0 No log 0.199586
|
| 11 |
|
| 12 |
-
|
| 13 |
|
|
|
|
| 9 |
Epoch Training Loss Validation Loss
|
| 10 |
0 No log 0.199586
|
| 11 |
|
| 12 |
+
Fine tuned using `bert-base-uncased` model and `ag_news` dataset
|
| 13 |
|