You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I have successfully installed the model and run it according to the requirements in the README, but I have encountered some issues and look forward to your response.
The repository does not seem to provide example prompt requirements, such as the language and how to structure the length properly. By reading the code, I gathered the following information:
No negative_prompt
The length of the input prompt should be < 77 Tokens (CLIP)
The input must be in English.
In this case, I am unsure how to structure the prompt, so I simply wrote a prompt:
A little girl is riding a bicycle at high speed. Focused, detailed, realistic.
It occupied 67904MiB of GPU memory. The other parameters remained unchanged, with 50 sampling steps. The final video can be found here:
sample_1_seed0.mp4
Is this the expected result?
I did not see any relevant details about I2V in the code, nor any place where an image can be used as input. Should I understand that this open-source model is a T2V model?
It seems that there is no parameter to control the frame rate.
According to the promotion, the model can generate videos at 24 frames per second.
However, the video I generated only has 8 frames, with a total of 40 frames, as verified using the following command:
I tried adjusting the frame rate based on the parameter I saw. If I generate a 20-second video on a single GPU with a frame rate of 24, it results in an out-of-memory (OOM) error on a single A100 GPU, even with the following settings:
Is it because the open-source model only outputs 8 frames?
Additionally, there may be some issues in the code within the repository:
Dear Development Team,
Hello, I have successfully installed the model and run it according to the requirements in the README, but I have encountered some issues and look forward to your response.
negative_promptIn this case, I am unsure how to structure the prompt, so I simply wrote a prompt:
and set the seed to 42:
I set the output to 720x480 according to the README, and configured it as follows:
It occupied 67904MiB of GPU memory. The other parameters remained unchanged, with 50 sampling steps. The final video can be found here:
sample_1_seed0.mp4
Is this the expected result?
I did not see any relevant details about I2V in the code, nor any place where an image can be used as input. Should I understand that this open-source model is a T2V model?
It seems that there is no parameter to control the frame rate.
However, the video I generated only has 8 frames, with a total of 40 frames, as verified using the following command:
Is it because the open-source model only outputs 8 frames?
Additionally, there may be some issues in the code within the repository:
Vchitect-2.0/models/pipeline.py
Line 198 in 0ef47a5
This should be modified to
device = "cuda", or adddevice = "cuda"in:Vchitect-2.0/inference.py
Line 15 in 0ef47a5
Otherwise, a tensor not on the same device error will occur during pos embed.
https://github.com/Vchitect/Vchitect-2.0/tree/master/models/__pycache__
Should this be deleted? It seems unnecessary.
Looking forward to your response.