Skip to content

Source code for 🤗 Huggingface models cja5553/deberta-Twitter-spam-classification and cja5553/xlm-roberta-Twitter-spam-classification

Notifications You must be signed in to change notification settings

cja5553/Twitter_spam_detection_models

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

Code used to train the following 🤗 Huggingface models:

To use

deberta-Twitter-spam-classification

from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("cja5553/deberta-Twitter-spam-classification")
model = AutoModelForSequenceClassification.from_pretrained("cja5553/deberta-Twitter-spam-classification")

xlm-roberta-Twitter-spam-classification

from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("cja5553/xlm-roberta-Twitter-spam-classification")
model = AutoModelForSequenceClassification.from_pretrained("cja5553/xlm-roberta-Twitter-spam-classification")

Spam detection of Tweets

This model classifies Tweets from X (formerly known as Twitter) into 'Spam' (1) or 'Quality' (0).

Training Dataset

This was fine-tuned on the UtkMl's Twitter Spam Detection dataset.

Questions?

contact me at alba@wustl.edu

About

Source code for 🤗 Huggingface models cja5553/deberta-Twitter-spam-classification and cja5553/xlm-roberta-Twitter-spam-classification

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published