How to use Narshion/mWACH_mBERT_System with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Narshion/mWACH_mBERT_System")
# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Narshion/mWACH_mBERT_System") model = AutoModelForSequenceClassification.from_pretrained("Narshion/mWACH_mBERT_System")