AnimateDiff
AnimateDiff copied to clipboard
Official implementation of AnimateDiff.
Hi, is it possible to start with an existing image instead of generating from scratch?
Hello guys Im looking for some help, I can´t export in GIF but when I try to export in MP4 I get this error: 2024-01-05 00:11:04,555 - AnimateDiff - INFO...
Got an error when running the cmd `conda env create -f environment.yaml ` ``` conda env create -f environment.yaml Channels: - pytorch - nvidia - defaults Platform: osx-arm64 Collecting package...
I'm going to train the motion module myself. After hard preparation and debugging work, my training can finally be executed successfully, but I can't confirm the results. The output motion...
(base) [wangxi@v100-4 webvid]$ wget -nc http://www.robots.ox.ac.uk/~maxbain/webvid/results_2M_val.csv --2024-02-27 10:49:36-- http://www.robots.ox.ac.uk/~maxbain/webvid/results_2M_val.csv Resolving [www.robots.ox.ac.uk](http://www.robots.ox.ac.uk/) ([www.robots.ox.ac.uk](http://www.robots.ox.ac.uk/))... 129.67.94.2 Connecting to [www.robots.ox.ac.uk](http://www.robots.ox.ac.uk/) ([www.robots.ox.ac.uk)|129.67.94.2|:80](http://www.robots.ox.ac.uk)%7C129.67.94.2%7C/)... connected. HTTP request sent, awaiting response... 301 Moved Permanently Location: https://www.robots.ox.ac.uk/~maxbain/webvid/results_2M_val.csv [following] --2024-02-27...
At this function: https://github.com/guoyww/AnimateDiff/blob/cf80ddeb47b69cf0b16f225800de081d486d7f21/animatediff/utils/util.py#L17 I do not think the correct logic is *and* but it should be *or*?
- Change the logic operation from **and** to **or**
app.py 165 to 167 line: if seed_textbox != -1 and seed_textbox != "": torch.manual_seed(int(seed_textbox)) else: torch.seed() seed = torch.initial_seed() I have tested repeatedly and found that 'seed' always points to...
https://github.com/guoyww/AnimateDiff/blob/cf80ddeb47b69cf0b16f225800de081d486d7f21/animatediff/models/unet.py#L39 I saw that ```UNet3DConditionModel``` did not support "_supports_gradient_checkpointing=True" in diffusers. https://github.com/huggingface/diffusers/blob/f0216b7756480656ff8b14a2fe75bd6d99cb7acc/src/diffusers/models/unets/unet_3d_condition.py#L95 Can I simply change this one in diffusers to "True" as in AnimateDiff? What should I adjust for...