Longer videos and textual inversions and fp16 autocast #25
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added the ability to choose separately the length of a video and the size of the context of the temporal attention module. By using a sliding window of attention it is now possible to generate infinitely long GIFs.
Sliding window related parameters:
--L- the length of the generated animation.--context_length- the length of the sliding window (limited by motion modules capacity), default toL.--context_overlap- how much neighbouring contexts overlap. By defaultcontext_length/ 2--context_stride- (2^context_stride) is a max stride between 2 neighbour frames. By default 0Added support for
.pttextual inversions from civit.ai that should be put inmodels/embeddingsdirectory. Though I'm not very sure if this implementation is fully correct, but works fine for me.Now inference automatically uses
torch.autocastto fp16 if--fp32is not specified. It sped things up by 100% in my tests.