CONTENT WARNING: This repository contains LoRA adapters trained on adult/NSFW content for video generation. These models are intended for adult users (18+) only and should be used responsibly in accordance with applicable laws and regulations.
Specialized LoRA (Low-Rank Adaptation) adapters for the WAN 2.1 14B image-to-video generation model, focused on specific action sequences and camera angles.
📦 Model Information
Base Model: WAN 2.1 I2V 14B
Type: Action-Specific LoRA Adapters
Version: v1 and v2 variants
Precision: BF16 (Brain Floating Point 16)
Content Type: Adult/NSFW
Total Models: 8 specialized adapters
Repository Size: 3.2GB
⚠️ Usage Restrictions
Age Restriction: 18+ only
Legal Compliance: Users must comply with local laws regarding adult content
Ethical Use: Not for non-consensual content generation or deepfakes
Platform Guidelines: Respect platform policies where content is shared
Content Moderation: Implement appropriate content warnings and filters
720p: Higher resolution variants for improved detail
🚀 Usage Examples
Basic I2V Usage with Action LoRA
python
1from diffusers import DiffusionPipeline, AutoencoderKL
2from PIL import Image
3import torch
45# Load base WAN 2.1 I2V model6pipe = DiffusionPipeline.from_pretrained(7"path/to/wan21-i2v-14b",8 torch_dtype=torch.bfloat16,9 device_map="auto"10)1112# Load WAN 2.1 VAE13pipe.vae = AutoencoderKL.from_single_file(14"path/to/wan21-vae.safetensors"15)1617# Load action-specific LoRA with absolute path18pipe.load_lora_weights(19"E:/huggingface/wan21-fp8-loras-nsfw/loras/wan/wan21-action-missionary-pov-i2v-v2.safetensors"20)2122# Load input image23input_image = Image.open("input.jpg")2425# Generate video with action-specific motion26prompt ="smooth camera movement, cinematic lighting, high quality"27video = pipe(28 prompt=prompt,29 image=input_image,30 num_inference_steps=50,31 guidance_scale=7.5,32 num_frames=2433).frames
3435# Save video36from diffusers.utils import export_to_video
37export_to_video(video,"output_action.mp4", fps=8)
Switching Between Action LoRAs
python
1# Define base path2LORA_PATH ="E:/huggingface/wan21-fp8-loras-nsfw/loras/wan"34# Available action LoRAs5actions ={6"bounce_v1":"wan21-action-bounce-v1.safetensors",7"doggy_pov_v2":"wan21-action-doggypov-v2.safetensors",8"doggy_front_t2v":"wan21-action-doggystylefromfront-t2v.safetensors",9"front_doggy_plow_v2":"wan21-action-front-doggy-plow-v2.safetensors",10"missionary_pov_i2v_v2":"wan21-action-missionary-pov-i2v-v2.safetensors",11"missionary_pov_v2":"wan21-action-missionary-pov-v2.safetensors",12"orgasm_i2v_720p":"wan21-action-orgasm-i2v-720p.safetensors",13"orgasm_v2_t2v":"wan21-action-orgasm-v2-t2v-14b.safetensors",14}1516# Load specific action17selected_action ="missionary_pov_v2"18pipe.load_lora_weights(f"{LORA_PATH}/{actions[selected_action]}")
T2V Usage (Text-to-Video)
python
1# Load T2V action LoRA2pipe.load_lora_weights(3"E:/huggingface/wan21-fp8-loras-nsfw/loras/wan/wan21-action-orgasm-v2-t2v-14b.safetensors"4)56# Generate from text prompt7prompt ="cinematic scene with dynamic movement, professional lighting, high detail"8video = pipe(9 prompt=prompt,10 num_inference_steps=50,11 guidance_scale=7.5,12 num_frames=24,13 height=720,14 width=128015).frames
⚙️ Technical Specifications
Model Architecture
Type: LoRA (Low-Rank Adaptation) adapters
Precision: BF16 (Brain Floating Point 16-bit)
Format: SafeTensors (.safetensors)
Base Compatibility: WAN 2.1 I2V 14B architecture
Training Method: Action-specific motion patterns and camera movements
LoRA Variants
v1 LoRAs (Initial Generation):
File sizes: 293-343MB
Standard motion patterns
Baseline quality and consistency
v2 LoRAs (Enhanced Generation):
File sizes: 293-586MB
Improved motion consistency and temporal coherence
Better training datasets and methodology
Recommended for production use
Resolution Support
I2V 720p Models:
Input: 1280x720 images
Output: High-resolution video sequences (720p)
Higher VRAM requirements (20GB+)
Best visual quality
Standard I2V Models:
Input: 480p or 720p images
Output: Matching resolution video
Balanced quality and performance (16-17GB VRAM)
T2V Models:
No input image required
Resolution specified in generation parameters
More flexible but requires better prompting
💻 Hardware Requirements
Minimum Requirements
GPU: NVIDIA RTX 3060 (12GB VRAM) or AMD equivalent
RAM: 16GB system RAM
Storage: 4GB for LoRAs + base model space (~50GB total)
GPU Architecture: Ampere or newer (BF16 support required)
Recommended Configuration
GPU: NVIDIA RTX 3090 (24GB VRAM) or RTX 4070 Ti (16GB)
RAM: 32GB system RAM
Storage: 100GB SSD (for full WAN 2.1 ecosystem)
Operating System: Linux or Windows 10/11
High-End (720p Generation)
GPU: NVIDIA RTX 4090 (24GB VRAM) or A100 (40GB)
RAM: 64GB system RAM
Storage: 200GB+ NVMe SSD
Optimized for: 720p high-quality output at 50+ inference steps
Community feedback and feature requests are welcome
Consider contributing improvements or additional LoRAs
Share responsible usage patterns and best practices
📋 Summary
This repository contains 8 specialized action LoRA adapters for the WAN 2.1 I2V 14B video generation model:
Key Specifications
Total Size: 3.2GB (8 action-specific adapters)
Content Type: Adult/NSFW (18+ only)
Variants: v1 (standard) and v2 (enhanced)
Resolution: 480p and 720p support
Precision: BF16 (Brain Floating Point 16-bit)
Format: SafeTensors (.safetensors)
Use Cases
Specialized action sequences with controlled motion patterns
Camera angle control (POV, frontal, tracking)
Text-to-video and image-to-video generation
High-resolution video synthesis (up to 720p)
Requirements
WAN 2.1 I2V 14B base model (required)
WAN 2.1 VAE (required for video encoding/decoding)
12-24GB VRAM (depending on resolution and settings)
BF16-capable GPU (NVIDIA Ampere/Ada or newer)
Content Warning
These models are trained on adult content and intended for responsible adult use only (18+). Users must:
Comply with applicable laws and regulations
Implement appropriate age verification and safeguards
Use ethically and respect individual rights
Follow platform content policies and guidelines
Technical Note
These are specialized LoRA adapters that modify the base WAN 2.1 I2V model behavior to generate specific action sequences and camera movements. They require the WAN 2.1 base model and VAE to function and cannot be used independently.
Last Updated: October 2025
Repository Version: 1.4
Total Size: 3.2GB (8 action LoRAs with v1/v2 variants)
Content Rating: Adult/NSFW (18+ only)
Primary Use Case: Specialized action and camera angle video generation for adult content
License: WAN model license with additional ethical use restrictions