Text Classification
Transformers
PyTorch
distilbert
Generated from Trainer
text-embeddings-inference
Instructions to use prakhars/instagram_caption_classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prakhars/instagram_caption_classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="prakhars/instagram_caption_classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("prakhars/instagram_caption_classifier") model = AutoModelForSequenceClassification.from_pretrained("prakhars/instagram_caption_classifier", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -12,7 +12,7 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 12 |
|
| 13 |
# instagram_caption_classifier
|
| 14 |
|
| 15 |
-
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the
|
| 16 |
It achieves the following results on the evaluation set:
|
| 17 |
- Loss: 0.8879
|
| 18 |
|
|
|
|
| 12 |
|
| 13 |
# instagram_caption_classifier
|
| 14 |
|
| 15 |
+
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the [prakhars/instagram_captions dataset](https://huggingface.co/datasets/prakhars/instagram_captions)
|
| 16 |
It achieves the following results on the evaluation set:
|
| 17 |
- Loss: 0.8879
|
| 18 |
|