Model Card for Model ID
Model Details
Model Description
This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model is for Hindi-English code-mixed hate detection.
- Developed by: Aakash Kumar, Debajyoti Mazumder, Jasabanta Patro
- Model type: Text Classification
- Language(s) : Hindi-English code-mixed
- Parent Model: See the BERT multilingual base model (cased) for more information about the model.
How to Get Started with the Model
Details of usage
import torch
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("debajyotimaz/codemix_hate")
model = AutoModelForSequenceClassification.from_pretrained("debajyotimaz/codemix_hate")
inputs = tokenizer("Mai tumse hate karta hun", return_tensors="pt")
prediction= model(input_ids=inputs['input_ids'],attention_mask=inputs['attention_mask'])
print(prediction.logits)
Metrics
We use the F1 score of positive class as the evaluation metric for training of our model because it takes into account the Acc, Pre and Rec values.
- Downloads last month
- 95
Inference Providers
NEW
This model is not currently available via any of the supported third-party Inference Providers, and
the model is not deployed on the HF Inference API.