Text Classification
Transformers
TensorBoard
Safetensors
distilbert
Generated from Trainer
text-embeddings-inference
Instructions to use AndresR2909/finetuning_bert_text_classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AndresR2909/finetuning_bert_text_classification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="AndresR2909/finetuning_bert_text_classification")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("AndresR2909/finetuning_bert_text_classification") model = AutoModelForSequenceClassification.from_pretrained("AndresR2909/finetuning_bert_text_classification") - Notebooks
- Google Colab
- Kaggle
Update requirements.txt
Browse files- requirements.txt +1 -1
requirements.txt
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
transformers
|
|
|
|
| 1 |
+
transformers>=4.45.1
|