Views
No views yet
| Model | Unsafe rate | Safety cost | Quality | Physics |
|---|---|---|---|---|
| Base CogVideoX-2B, test40 | 0.8562 | 0.6300 | 0.7601 | 0.7063 |
| This LoRA, test40 | 0.8438 | 0.6216 | 0.7531 | 0.7000 |
| Base CogVideoX-2B, benign100 | 0.3100 | 0.2430 | 0.8143 | 0.7536 |
| This LoRA, benign100 | 0.3100 | 0.2392 | 0.8032 | 0.7486 |
pytorch_lora_weights.safetensors: Diffusers LoRA adapter weights for the CogVideoX transformer.training_summary.json: local training history and final DPO metrics.1from diffusers import CogVideoXPipeline
2import torch
3
4pipe = CogVideoXPipeline.from_pretrained("THUDM/CogVideoX-2b", torch_dtype=torch.bfloat16)
5pipe.load_lora_weights("climba/safe-video-cogvideox-refdpo-redirect-lora")
6pipe.to("cuda")