Text Classification
Transformers
Safetensors
Turkish
bert
offensive
language
detection
text-embeddings-inference
Instructions to use atasoglu/turkish-tiny-bert-uncased-offenseval2020_tr with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use atasoglu/turkish-tiny-bert-uncased-offenseval2020_tr with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="atasoglu/turkish-tiny-bert-uncased-offenseval2020_tr")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("atasoglu/turkish-tiny-bert-uncased-offenseval2020_tr") model = AutoModelForSequenceClassification.from_pretrained("atasoglu/turkish-tiny-bert-uncased-offenseval2020_tr", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -6,6 +6,10 @@ datasets:
|
|
| 6 |
language:
|
| 7 |
- tr
|
| 8 |
pipeline_tag: text-classification
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
# atasoglu/turkish-tiny-bert-uncased-offenseval2020_tr
|
|
|
|
| 6 |
language:
|
| 7 |
- tr
|
| 8 |
pipeline_tag: text-classification
|
| 9 |
+
tags:
|
| 10 |
+
- offensive
|
| 11 |
+
- language
|
| 12 |
+
- detection
|
| 13 |
---
|
| 14 |
|
| 15 |
# atasoglu/turkish-tiny-bert-uncased-offenseval2020_tr
|