Views
No views yet
| Model | Unsafe rate | Safety cost | Quality | Physics |
|---|---|---|---|---|
| Base CogVideoX-2B | 0.8562 | 0.6300 | 0.7601 | 0.7063 |
| This SFT LoRA | 0.8469 | 0.6272 | 0.7848 | 0.7278 |
pytorch_lora_weights.safetensors: Diffusers LoRA adapter weights for the CogVideoX transformer.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-sft-lora")
6pipe.to("cuda")