Transformers How to use hendrydong/Mistral-RM-baseline-No-Safety-Alignment with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="hendrydong/Mistral-RM-baseline-No-Safety-Alignment") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("hendrydong/Mistral-RM-baseline-No-Safety-Alignment")
model = AutoModelForSequenceClassification.from_pretrained("hendrydong/Mistral-RM-baseline-No-Safety-Alignment")