SpamClass
Collection
Small Spam Classification Models! • 10 items • Updated • 3
How to use DataMuncher-Labs/SC-400k with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="DataMuncher-Labs/SC-400k") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("DataMuncher-Labs/SC-400k", dtype="auto")