Training in progress, step 1484 c64c2bd
Johannes Garstenauer commited on
How to use johannes-garstenauer/bin_clean_seq_class_balanced with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="johannes-garstenauer/bin_clean_seq_class_balanced") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("johannes-garstenauer/bin_clean_seq_class_balanced")
model = AutoModelForSequenceClassification.from_pretrained("johannes-garstenauer/bin_clean_seq_class_balanced")