Instructions to use OmAhire369/safe-genai-ppo-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use OmAhire369/safe-genai-ppo-lora with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("gpt2-medium") model = PeftModel.from_pretrained(base_model, "OmAhire369/safe-genai-ppo-lora") - Notebooks
- Google Colab
- Kaggle
safe-genai-ppo-lora
PPO (RLHF) trained with LoRA adapters on top of
gpt2-medium, for safety alignment of
LLM responses to harmful and stereotype-triggering prompts.
Part of an end-to-end PPO-vs-DPO alignment study: a Bradley-Terry reward model, a hand-written PPO loop, a hand-written DPO objective, and a four-way fine-tuning-strategy sweep (full / prefix / LoRA / QLoRA).
Training setup
| Base model | gpt2-medium |
| Method | PPO (RLHF) |
| Fine-tuning strategy | LoRA adapters |
| Trainable parameters | 4.325M / 359.15M (1.2043%) |
| Preference data | Cultural Kaleidoscope preference data |
| Training pairs | n/a |
| Wall-clock | 1345.72 s |
| Peak GPU | 5424.6 MB |
Results
| Metric | Value |
|---|---|
| Reward-model score after training | -2.0682 |
| Reward improvement vs. step 0 | 2.7894 |
Usage
from peft import PeftModel
from transformers import AutoTokenizer, AutoModelForCausalLM
base = AutoModelForCausalLM.from_pretrained("gpt2-medium")
model = PeftModel.from_pretrained(base, "OmAhire369/safe-genai-ppo-lora")
tok = AutoTokenizer.from_pretrained("OmAhire369/safe-genai-ppo-lora")
Limitations
gpt2-medium is a small, dated base model with no instruction tuning; alignment
here shifts response style and safety but does not make the model factual or
production-ready. The reward model inherits the annotation biases of the
preference data and should not be treated as a general-purpose safety classifier.
- Downloads last month
- 27
Model tree for OmAhire369/safe-genai-ppo-lora
Base model
openai-community/gpt2-medium