OpenAssistant/oasst1
Viewer • Updated • 88.8k • 23k • 1.51k
How to use theblackcat102/reward-deberta-v3-large-aspect with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="theblackcat102/reward-deberta-v3-large-aspect") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("theblackcat102/reward-deberta-v3-large-aspect")
model = AutoModelForSequenceClassification.from_pretrained("theblackcat102/reward-deberta-v3-large-aspect")