Allow passing SMPL/HumanML3D initialization parameters#43
Open
UuuNyaa wants to merge 7 commits intoGuyTevet:mainfrom
Open
Allow passing SMPL/HumanML3D initialization parameters#43UuuNyaa wants to merge 7 commits intoGuyTevet:mainfrom
UuuNyaa wants to merge 7 commits intoGuyTevet:mainfrom
Conversation
7c5a825 to
427f625
Compare
Author
|
Now we can specify the sampling timesteps for ddim. |
Author
|
I did motion editing (In-Betweening) on my CPU with ddim sampling. CPU model and Settings
seed = 1
max_frames = 196
guidance_param = 2.5
device = 0
text_condition = "a person jumps"
num_samples = 1
batch_size = 1
dataset = 'humanml'
prefix_end = 0.25
suffix_start = 0.75
diffusion_steps = 1000
diffusion_sampling_steps = 100
input_motion = np.load(os.path.join(DATA_PATH, 'dataset', 'joints', '000021.npy'))[:, :22] |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
I have made it possible to initialize SMPL/HumanML3D by specifying the model path.
Now, you can load a model of any path with the following code: