-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* init commit (#3) * update diffusion * polish * update structure * embed * update ref * update ref * udpate opensora init * remove * update * update name * fix v1 * update ignore * update stdit2 * update v2 infer * support v2 infer * update script * polish code * update script * update script and rename * fix cross * update code for temporal and cross * update base script * remove layernorm for infer * update * add readme (#4) * update default setting (#5) * Spatial attention (#6) * update prompt * update spatial * update code control * Merge (#7) * update diffusion * polish * update structure * embed * update ref * update ref * udpate opensora init * remove * update * update name * fix v1 * update ignore * update stdit2 * update v2 infer * support v2 infer * update script * polish code * update script * update script and rename * fix cross * fix some bugs * optimize attn * add latte * update * update opensora sample * remove useless arg * Update save_dir path in opensora sample configs * update test * seed * update opensora plan * update opensora plan * update yaml * remove useless * update opensora plan * update doc * update script * update data * update code * update usage * update * add attn skip for latte and opensoraplan (#8) * add block * fix * update latte * update * add latte args (#9) * fix latte argparse (#10) * add kw * fix arg * add eval * update ignore * Opensorav1.2 (#11) * add opensorav1.2 * update final * udpate mgr * support opensora skip (#12) * update opensora yaml * add shard * update opensora skip * update config for other models (#13) * finish opensora-plan and latte * Sp (#14) * update latte shard * rename arg * update license * update lincense file * update dynamic sp for opensoraplan and latte * Update STDiT3Block and STDiT3 classes in stdit3.py * finish opensora * code refine * code refine * final code clean * update skip_diffusion_timestep function to handle more than 1 step skip * update skip config (#16) * udpate range for all * update opensora plan * update code * polish code * polish print * update default value * update verbose * finish latte eval generate function * update gitignore * finish eval TODO: BUG check whether center crop is correct TODO original video size< generated videos, how to resize? * update eval save * update mlp skip * update * parse mlp skip * update * update * update * update test mlp mse * update * update * update * update skip s t * update * update * update * update * update latte * update * update * update * update * update * update * update * update * update * update * update finish skip function * delete and change file name to clean code * update * update * clean code finish * delete mse code and clean code finish * delete and clean code * clean eval code * delete asset * update * polish code * polish * update rflow --------- Co-authored-by: Xuanlei Zhao <[email protected]> Co-authored-by: Jinxiaolong1129 <[email protected]>
- Loading branch information
1 parent
5b50248
commit 994a348
Showing
14 changed files
with
637 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
model_path: LanguageBind/Open-Sora-Plan-v1.1.0 | ||
version: 221x512x512 | ||
num_frames: 221 | ||
height: 512 | ||
width: 512 | ||
cache_dir: "./cache_dir" | ||
text_encoder_name: DeepFloyd/t5-v1_1-xxl | ||
text_prompt: [ | ||
"Several giant wooly mammoths approach treading through a snowy meadow, their long wooly fur lightly blows in the wind as they walk, snow covered trees and dramatic snow capped mountains in the distance, mid afternoon light with wispy clouds and a sun high in the distance creates a warm glow, the low camera view is stunning capturing the large furry mammal with beautiful photography, depth of field.", | ||
"A movie trailer featuring the adventures of the 30 year old space man wearing a red wool knitted motorcycle helmet, blue sky, salt desert, cinematic style, shot on 35mm film, vivid colors.", | ||
"Animated scene features a close-up of a short fluffy monster kneeling beside a melting red candle. The art style is 3D and realistic, with a focus on lighting and texture. The mood of the painting is one of wonder and curiosity, as the monster gazes at the flame with wide eyes and open mouth. Its pose and expression convey a sense of innocence and playfulness, as if it is exploring the world around it for the first time. The use of warm colors and dramatic lighting further enhances the cozy atmosphere of the image.", | ||
] | ||
ae: CausalVAEModel_4x8x8 | ||
save_img_path: "./samples/opensora_plan" | ||
fps: 24 | ||
guidance_scale: 7.5 | ||
num_sampling_steps: 150 | ||
enable_tiling: True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
from .latte_t2v import LatteT2V | ||
from .pipeline import LattePipeline | ||
|
||
__all__ = [ | ||
"LatteT2V", | ||
"LattePipeline", | ||
] |
Oops, something went wrong.