Model reference · open weights
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
| Maker | rhymes-ai |
|---|---|
| Type | Video models |
| Task | Image→video |
| Parameters (lead) | 2.8B |
| Runs with | diffusers |
| Released | 2024-11-21 |
| Popularity | 12 downloads / month |
| Licence | Open weights |
About
Download the Allegro GitHub code.
Install the necessary requirements.
Download the Allegro-TI2V model weights.
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.
| Argument | Description |
|---|---|
--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. |
(Optional) Interpolate the video to 30 FPS
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
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.