Discussed on discord. Here are the notes:
I notice that when split into scenes with content aware scheduling, animatediff batches seem to start from the last scene, skipping the others. This appears to be true both when defining manual splits or using the content aware scheduling to do same.
I added a
print("filtered_scenes:", filtered_scenes) right before the
for scene in filtered_scenes:
if 'animatediff' in model_version:
inside the Do the Run cell, and it does show all the scenes, so I'm definitely confused at this point. My understanding of following the code breaks down though because I can't understand how the subsequent do_run_adiff(args) knows about any of that because everything I understand about scoping of variables involved doesn't seem to match what is happening.
Discussed on discord. Here are the notes:
I notice that when split into scenes with content aware scheduling, animatediff batches seem to start from the last scene, skipping the others. This appears to be true both when defining manual splits or using the content aware scheduling to do same.
I added a
print("filtered_scenes:", filtered_scenes)right before theinside the
Do the Runcell, and it does show all the scenes, so I'm definitely confused at this point. My understanding of following the code breaks down though because I can't understand how the subsequentdo_run_adiff(args)knows about any of that because everything I understand about scoping of variables involved doesn't seem to match what is happening.