You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
where can i download the resource of '/path/to/audio/files'
trainer = SemanticTransformerTrainer(
transformer = semantic_transformer,
wav2vec = wav2vec,
audio_conditioner = quantizer, # pass in the MulanEmbedQuantizer instance above
folder ='/path/to/audio/files',
batch_size = 1,
data_max_length = 320 * 32,
num_train_steps = 1
)
how can i have audio_lm & mulan_embed_quantizer? they didn't appear above
from musiclm_pytorch import MusicLM
musiclm = MusicLM(
audio_lm = audio_lm,
mulan_embed_quantizer = mulan_embed_quantizer
)
music = musiclm(['the crystalline sounds of the piano in a ballroom']) # torch.Tensor
Beta Was this translation helpful? Give feedback.
All reactions