Model reference · open weights

Allegro-TI2V

Available as managed deployment Video rhymes-ai Image→video 1 variants 12 dl/mo

Allegro-TI2V is an open-weight video model from rhymes-ai. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.

Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.

What it is

Makerrhymes-ai
TypeVideo models
TaskImage→video
Parameters (lead)2.8B
Runs withdiffusers
Released2024-11-21
Popularity12 downloads / month
LicenceOpen weights

About

What Allegro-TI2V is

  • Open Source: Full model weights and code available to the community, Apache 2.0!
  • Versatile Content Creation: Capable of generating a wide range of content, from close-ups of humans and animals to diverse dynamic scenes.
  • Text-Image-to-Video Generation: Generate videos from user-provided prompts and images. Supported input types include:
    • Generating subsequent video content from a user prompt and first frame image.
    • Generating intermediate video content from a user prompt and both first and last frame images.
  • High-Quality Output: Generate detailed 6-second videos at 15 FPS with 720x1280 resolution, which can be interpolated to 30 FPS with EMA-VFI.
  • Small and Efficient: Features a 175M parameter VideoVAE and 2.8B parameter VideoDiT model. Supports multiple precisions (FP32, BF16, FP16) and uses 9.3 GB GPU memory in BF16 mode with CPU offloading. Context length is 79.2K, equivalent to 88 frames.

Model info

Quick start

  1. Download the Allegro GitHub code.

  2. Install the necessary requirements.

    • Ensure Python >= 3.10, PyTorch >= 2.4, CUDA >= 12.4. For details, see requirements.txt.
    • It is recommended to use Anaconda to create a new environment (Python >= 3.10) to run the following example.
  3. Download the Allegro-TI2V model weights.

  4. Run inference.

    python single_inference_ti2v.py \
    --user_prompt 'The car drives along the road.' \
    --first_frame your/path/to/first_frame_image.png \
    --vae your/path/to/vae \
    --dit your/path/to/transformer \
    --text_encoder your/path/to/text_encoder \
    --tokenizer your/path/to/tokenizer \
    --guidance_scale 8 \
    --num_sampling_steps 100 \
    --seed 1427329220
    

    The output video resolution is fixed at 720 × 1280. Input images with different resolutions will be automatically cropped and resized to fit.

    ArgumentDescription
    --user_prompt[Required] Text input for image-to-video generation.
    --first_frame[Required] First-frame image input for image-to-video generation.
    --last_frame[Optional] If provided, the model will generate intermediate video content based on the specified first and last frame images.
    --enable_cpu_offload[Optional] Offload the model into CPU for less GPU memory cost (about 9.3G, compared to 27.5G if CPU offload is not enabled), but the inference time will increase significantly.
  5. (Optional) Interpolate the video to 30 FPS

  • It is recommended to use EMA-VFI to interpolate the video from 15 FPS to 30 FPS.
  • For better visual quality, you can use imageio to save the video.

License

This repo is released under the Apache 2.0 License.

From the published model card. Full card on the HuggingFace links in the sidebar.

Using it via the API

Call it like any OpenAI endpoint

Once AxForge deploys allegro-ti2v for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (allegro-ti2v below is illustrative; you get the exact model name on deployment.)

$ curl -sS https://api.axforge.ai/v1/videos/generations \
  -H "Authorization: Bearer $AXFORGE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"allegro-ti2v","prompt":"a drone shot over a forest"}'

Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms