Edit model card

Model Trained Using AutoTrain

  • Problem type: Binary Classification
  • Model ID: 66889136741
  • CO2 Emissions (in grams): 0.2025

Validation Metrics

  • Loss: 0.301
  • Accuracy: 0.857
  • Precision: 0.517
  • Recall: 0.500
  • AUC: 0.876
  • F1: 0.509

Usage

You can use cURL to access this model:

$ curl -X POST -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/json" -d '{"inputs": "I love AutoTrain"}' https://api-inference.huggingface.co/models/raphaesq/autotrain-filipino-hate-speech-roberta-tagalog-base-66889136741

Or Python API:

from transformers import AutoModelForSequenceClassification, AutoTokenizer

model = AutoModelForSequenceClassification.from_pretrained("raphaesq/autotrain-filipino-hate-speech-roberta-tagalog-base-66889136741", use_auth_token=True)

tokenizer = AutoTokenizer.from_pretrained("raphaesq/autotrain-filipino-hate-speech-roberta-tagalog-base-66889136741", use_auth_token=True)

inputs = tokenizer("I love AutoTrain", return_tensors="pt")

outputs = model(**inputs)
Downloads last month
3
Safetensors
Model size
109M params
Tensor type
I64
·
F32
·
Inference API
This model can be loaded on Inference API (serverless).