GSOC 2026 Interest: Project #4 add image to video support to LTX Video Generation #34229
Replies: 2 comments 1 reply
|
I went through the LTX pipeline and the transformer wrapper. For image+text to video, I see two integration paths: Add an image encoder and fuse image embeddings with text embeddings before passing them as encoder_hidden_states, Keep the transformer unchanged and initialize latents from an encoded image (via VAE) with added noise, so diffusion remains structurally identical but anchored to the image. My understanding is that (2) is architecturally safer unless the underlying LTX model was trained for multimodal inputs. Could you clarify whether the pretrained LTX transformer is expected to support multimodal conditioning, or if the intended approach is latent initialization? |
|
Hi Yash, Please note that the final proposal must be submitted through the GSoC portal webapp to be considered Yes, your understanding of the problem statement is correct at a high level: the expected direction is to encode the input image into latents and use them together with text conditioning As for the implementation details, we do not expect applicants to fully define the exact integration approach at this stage. The concrete technical details will be discussed further during the program. Also, could you please attach the PR/PRs you have worked on in OpenVINO repository? Thanks for the thoughtful questions and for taking the time to look into the pipeline. Regards, |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hello @likholat @sgonorov
Im Yash Vijay, a 3rd year university student enrolled in a dual program of Msc Mathematics and B.E Computer Science,
from Bits Pilani.
I mostly just wanted confirmation on what i understood from the project details:
So we already have a text to video pipeline that denoises noise into videos from text and are updating it so that it 1)inputs an image, 2) turns it into latent 3) denoises that based on text embedding and latent 4) gives out video preserving image structure.
Is that the problem statement or did i miss something?
Thanks for your time!
All reactions