Instructions to use GroNLP/bert_dutch_base_abusive_language with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use GroNLP/bert_dutch_base_abusive_language with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="GroNLP/bert_dutch_base_abusive_language")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("GroNLP/bert_dutch_base_abusive_language") model = AutoModelForSequenceClassification.from_pretrained("GroNLP/bert_dutch_base_abusive_language") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -16,5 +16,4 @@ The model achieve the following results on multiple test data:
|
|
| 16 |
- HateCheck-NL (functional benchmark for hate speech): Accuracy: 60.19; Accuracy non-hateful tests: 57.38 ; Accuracy hateful tests: 59.58
|
| 17 |
- OP-NL (dynamyc benchmark for offensive language): macro F1: 57.57
|
| 18 |
|
| 19 |
-
More details on the training settings and pre-processind are available [here](https://github.com/tommasoc80/DALC)
|
| 20 |
-
|
|
|
|
| 16 |
- HateCheck-NL (functional benchmark for hate speech): Accuracy: 60.19; Accuracy non-hateful tests: 57.38 ; Accuracy hateful tests: 59.58
|
| 17 |
- OP-NL (dynamyc benchmark for offensive language): macro F1: 57.57
|
| 18 |
|
| 19 |
+
More details on the training settings and pre-processind are available [here](https://github.com/tommasoc80/DALC)
|
|
|