Initial commit 0f2ecee
GautamR commited on
How to use GautamR/mbert_agri_detect with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="GautamR/mbert_agri_detect") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("GautamR/mbert_agri_detect", dtype="auto")