Instructions to use gustavecortal/roberta-tec with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use gustavecortal/roberta-tec with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="gustavecortal/roberta-tec")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("gustavecortal/roberta-tec") model = AutoModelForSequenceClassification.from_pretrained("gustavecortal/roberta-tec") - Notebooks
- Google Colab
- Kaggle
Librarian Bot: Add base_model information to model
#1
by librarian-bot - opened
README.md
CHANGED
|
@@ -6,6 +6,7 @@ metrics:
|
|
| 6 |
- f1
|
| 7 |
- recall
|
| 8 |
- precision
|
|
|
|
| 9 |
model-index:
|
| 10 |
- name: roberta_tec_gpu_v1
|
| 11 |
results: []
|
|
|
|
| 6 |
- f1
|
| 7 |
- recall
|
| 8 |
- precision
|
| 9 |
+
base_model: ibm/ColD-Fusion
|
| 10 |
model-index:
|
| 11 |
- name: roberta_tec_gpu_v1
|
| 12 |
results: []
|