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 model card README.md
Browse files
README.md
CHANGED
|
@@ -45,7 +45,7 @@ The following hyperparameters were used during training:
|
|
| 45 |
|
| 46 |
### Framework versions
|
| 47 |
|
| 48 |
-
- Transformers 4.22.
|
| 49 |
- Pytorch 1.12.1+cu113
|
| 50 |
-
- Datasets 2.
|
| 51 |
- Tokenizers 0.12.1
|
|
|
|
| 45 |
|
| 46 |
### Framework versions
|
| 47 |
|
| 48 |
+
- Transformers 4.22.1
|
| 49 |
- Pytorch 1.12.1+cu113
|
| 50 |
+
- Datasets 2.5.1
|
| 51 |
- Tokenizers 0.12.1
|