zen-director

5B parameter text/image-to-video generation model for professional video synthesis

Model Details

  • Developed by: Zen Research Authors
  • Organization: Zen Research DAO under Zoo Labs Inc (501(c)(3) Non-Profit)
  • Location: San Francisco, California, USA
  • Model type: text-to-video
  • Architecture: Diffusion Transformer (5B)
  • Parameters: 5B
  • License: Apache 2.0
  • Training: Trained with Zen Gym
  • Inference: Optimized for Zen Engine

🌟 Zen AI Ecosystem

This model is part of the Zen Research hypermodal AI family - the world's most comprehensive open-source AI ecosystem.

Complete Model Family

Language Models:

3D & World Generation:

  • zen-3d - Controllable 3D asset generation
  • zen-voyager - Camera-controlled world exploration
  • zen-world - Large-scale world simulation

Video Generation:

Audio Generation:

Infrastructure:

Usage

Quick Start

from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("zenlm/zen-director")
tokenizer = AutoTokenizer.from_pretrained("zenlm/zen-director")

from zen_director import ZenDirectorPipeline

pipeline = ZenDirectorPipeline.from_pretrained("zenlm/zen-director")
video = pipeline(
    prompt="A cinematic shot of a sunset over mountains",
    num_frames=120,
    fps=24,
    resolution=(1280, 720)
)
video.save("output.mp4")

With Zen Engine

# High-performance inference (44K tokens/sec on M3 Max)
zen-engine serve --model zenlm/zen-director --port 3690
# OpenAI-compatible API
from openai import OpenAI

client = OpenAI(base_url="http://localhost:3690/v1")
response = client.chat.completions.create(
    model="zenlm/zen-director",
    messages=[{"role": "user", "content": "Hello!"}]
)

Training

Fine-tune with Zen Gym:

git clone https://github.com/zenlm/zen-gym
cd zen-gym

# LoRA fine-tuning
llamafactory-cli train --config configs/zen_lora.yaml \
    --model_name_or_path zenlm/zen-director

# GRPO reinforcement learning (40-60% memory reduction)
llamafactory-cli train --config configs/zen_grpo.yaml \
    --model_name_or_path zenlm/zen-director

Supported methods: LoRA, QLoRA, DoRA, GRPO, GSPO, DPO, PPO, KTO, ORPO, SimPO, Unsloth

Performance

  • Speed: ~60s for 5-second video (RTX 4090)
  • Resolution: Up to 1280x720, 24 FPS
  • Duration: Up to 10 seconds
  • Quality: Professional-grade video synthesis

Ethical Considerations

  • Open Research: Released under Apache 2.0 for maximum accessibility
  • Environmental Impact: Optimized for eco-friendly deployment
  • Transparency: Full training details and model architecture disclosed
  • Safety: Comprehensive testing and evaluation
  • Non-Profit: Developed by Zoo Labs Inc (501(c)(3)) for public benefit

Citation

@misc{zenzendirector2025,
  title={zen-director: 5B parameter text/image-to-video generation model for professional video synthes},
  author={Zen Research Authors},
  year={2025},
  publisher={Zoo Labs Inc},
  organization={Zen Research DAO},
  url={https://huggingface.co/zenlm/zen-director}
}

Links

License

Apache License 2.0

Copyright 2025 Zen Research Authors


Zen Research - Building open, eco-friendly AI for everyone 🌱

Downloads last month
23
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support