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 ·
ef602ad
1
Parent(s): 21bfe77
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,8 +11,8 @@ widget:
|
|
| 11 |
example_title: "POS-NMBS"
|
| 12 |
- text: "De wegenwerken langs de E34 blijven al maanden aanhouden."
|
| 13 |
example_title: "NEG-AWV"
|
| 14 |
-
- text: "
|
| 15 |
-
example_title: "POS-
|
| 16 |
- text: "Het FWO financiert te weinig excellent onderzoek."
|
| 17 |
example_title: "NEG-FWO"
|
| 18 |
- text: "De Lijn is op zoek naar nieuwe buschauffeurs."
|
|
|
|
| 11 |
example_title: "POS-NMBS"
|
| 12 |
- text: "De wegenwerken langs de E34 blijven al maanden aanhouden."
|
| 13 |
example_title: "NEG-AWV"
|
| 14 |
+
- text: "Natuur en Bos is erin geslaagd 100 hectaren bosgebied te beschermen."
|
| 15 |
+
example_title: "POS-ANB"
|
| 16 |
- text: "Het FWO financiert te weinig excellent onderzoek."
|
| 17 |
example_title: "NEG-FWO"
|
| 18 |
- text: "De Lijn is op zoek naar nieuwe buschauffeurs."
|