add model e3321f0
Warren Sunada-Wong commited on
How to use ThinkCERCA/reasoning_hugging with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="ThinkCERCA/reasoning_hugging") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("ThinkCERCA/reasoning_hugging")
model = AutoModelForSequenceClassification.from_pretrained("ThinkCERCA/reasoning_hugging")