This model is based on a BERT model trained with a few bullying detection datasets. It is trained exclusively in the Indonesian language.

from transformers import BertTokenizer, AutoModelForSequenceClassification

model_path = 'kairaamilanii/IndoBERT-Bullying-Classifier'
tokenizer = BertTokenizer.from_pretrained(model_path)
model = AutoModelForSequenceClassification.from_pretrained(model_path)

text = "KOK JELEK BANGET SIH" # Example text for prediction

inputs = tokenizer(text, return_tensors="pt")
with torch.no_grad():
    outputs = model(**inputs)
    predicted_class = torch.argmax(outputs.logits, dim=-1).item()
print(f"Predicted class: {predicted_class}")

if predicted_class == 1:
    print("Prediction: Bullying")
else:
    print("Prediction: Non-bullying")

example output:

[{'Predicted class': 1, 'Prediction': Bullying}]
Downloads last month
16
Safetensors
Model size
111M params
Tensor type
F32
ยท
Inference Providers NEW
This model is not currently available via any of the supported Inference Providers.
The model cannot be deployed to the HF Inference API: The model has no library tag.

Model tree for kairaamilanii/IndoBERT-Bullying-Classifier

Finetuned
(59)
this model

Dataset used to train kairaamilanii/IndoBERT-Bullying-Classifier

Space using kairaamilanii/IndoBERT-Bullying-Classifier 1