Text Classification
Transformers
PyTorch
Dutch
bert
text classification
sentiment analysis
domain adaptation
text-embeddings-inference
Instructions to use clips/republic with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use clips/republic with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="clips/republic")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("clips/republic") model = AutoModelForSequenceClassification.from_pretrained("clips/republic") - Notebooks
- Google Colab
- Kaggle
Commit ·
2a72ead
1
Parent(s): 3349369
Update README.md
Browse files
README.md
CHANGED
|
@@ -7,9 +7,9 @@ tags:
|
|
| 7 |
- sentiment analysis
|
| 8 |
- domain adaptation
|
| 9 |
widget:
|
| 10 |
-
- text: "De NMBS
|
| 11 |
example_title: "Positive"
|
| 12 |
-
- text: "De reizigers van de NMBS
|
| 13 |
example_title: "Negative"
|
| 14 |
- text: "De NMBS is een vervoermaatschappij."
|
| 15 |
example_title: "Neutral"
|
|
|
|
| 7 |
- sentiment analysis
|
| 8 |
- domain adaptation
|
| 9 |
widget:
|
| 10 |
+
- text: "De NMBS heeft recent de airconditioning in alle treinen vernieuwd."
|
| 11 |
example_title: "Positive"
|
| 12 |
+
- text: "De reizigers van de NMBS kregen met lange wachttijden te kampen."
|
| 13 |
example_title: "Negative"
|
| 14 |
- text: "De NMBS is een vervoermaatschappij."
|
| 15 |
example_title: "Neutral"
|