HumanLLMs/Human-Like-DPO-Dataset
Viewer β’ Updated β’ 10.9k β’ 893 β’ 255
How to use tsessk/llm-course-hw2-reward-model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="tsessk/llm-course-hw2-reward-model") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("tsessk/llm-course-hw2-reward-model")
model = AutoModelForSequenceClassification.from_pretrained("tsessk/llm-course-hw2-reward-model")This model is a fine-tuned reward model based on HuggingFaceTB/SmolLM-135M-Instruct, trained on the HumanLLMs/Human-Like-DPO-Dataset dataset.
It has been trained using TRL to evaluate and rank responses based on human preferences, playing a crucial role in RLHF (Reinforcement Learning from Human Feedback) for models like SmolLM-135M-PPO.
Base model
HuggingFaceTB/SmolLM-135M