| classAudioLDM2PipelineFastTests(PipelineTesterMixin, unittest.TestCase): |
| pipeline_class=AudioLDM2Pipeline |
| params=TEXT_TO_AUDIO_PARAMS |
| batch_params=TEXT_TO_AUDIO_BATCH_PARAMS |
| required_optional_params=frozenset( |
| [ |
| "num_inference_steps", |
| "num_waveforms_per_prompt", |
| "generator", |
| "latents", |
| "output_type", |
| "return_dict", |
| "callback", |
| "callback_steps", |
| ] |
| ) |
| |
| supports_dduf=False |
| |
| defget_dummy_components(self): |
| torch.manual_seed(0) |
| unet=AudioLDM2UNet2DConditionModel( |
| block_out_channels=(8, 16), |
| layers_per_block=1, |
| norm_num_groups=8, |
| sample_size=32, |
| in_channels=4, |
| out_channels=4, |
| down_block_types=("DownBlock2D", "CrossAttnDownBlock2D"), |
| up_block_types=("CrossAttnUpBlock2D", "UpBlock2D"), |
| cross_attention_dim=(8, 16), |
| ) |
| scheduler=DDIMScheduler( |
| beta_start=0.00085, |
| beta_end=0.012, |
| beta_schedule="scaled_linear", |
| clip_sample=False, |
| set_alpha_to_one=False, |
| ) |
| torch.manual_seed(0) |
| vae=AutoencoderKL( |
| block_out_channels=[8, 16], |
| in_channels=1, |
| out_channels=1, |
| norm_num_groups=8, |
| down_block_types=["DownEncoderBlock2D", "DownEncoderBlock2D"], |
| up_block_types=["UpDecoderBlock2D", "UpDecoderBlock2D"], |
| latent_channels=4, |
| ) |
| torch.manual_seed(0) |
| text_branch_config= { |
| "bos_token_id": 0, |
| "eos_token_id": 2, |
| "hidden_size": 8, |
| "intermediate_size": 37, |
| "layer_norm_eps": 1e-05, |
| "num_attention_heads": 1, |
| "num_hidden_layers": 1, |
| "pad_token_id": 1, |
| "vocab_size": 1000, |
| "projection_dim": 8, |
| } |
| audio_branch_config= { |
| "spec_size": 8, |
| "window_size": 4, |
| "num_mel_bins": 8, |
| "intermediate_size": 37, |
| "layer_norm_eps": 1e-05, |
| "depths": [1, 1], |
| "num_attention_heads": [1, 1], |
| "num_hidden_layers": 1, |
| "hidden_size": 192, |
| "projection_dim": 8, |
| "patch_size": 2, |
| "patch_stride": 2, |
| "patch_embed_input_channels": 4, |
| } |
| text_encoder_config=ClapConfig( |
| text_config=text_branch_config, audio_config=audio_branch_config, projection_dim=16 |
| ) |
| text_encoder=ClapModel(text_encoder_config) |
| tokenizer=RobertaTokenizer.from_pretrained("hf-internal-testing/tiny-random-roberta", model_max_length=77) |
| feature_extractor=ClapFeatureExtractor.from_pretrained( |
| "hf-internal-testing/tiny-random-ClapModel", hop_length=7900 |
| ) |
| |
| torch.manual_seed(0) |
| text_encoder_2_config=T5Config( |
| vocab_size=32100, |
| d_model=32, |
| d_ff=37, |
| d_kv=8, |
| num_heads=1, |
| num_layers=1, |
| ) |
| text_encoder_2=T5EncoderModel(text_encoder_2_config) |
| tokenizer_2=T5Tokenizer.from_pretrained("hf-internal-testing/tiny-random-T5Model", model_max_length=77) |
| |
| torch.manual_seed(0) |
| language_model_config=GPT2Config( |
| n_embd=16, |
| n_head=1, |
| n_layer=1, |
| vocab_size=1000, |
| n_ctx=99, |
| n_positions=99, |
| ) |
| language_model=GPT2LMHeadModel(language_model_config) |
| language_model.config.max_new_tokens=8 |
| |
| torch.manual_seed(0) |
| projection_model=AudioLDM2ProjectionModel( |
| text_encoder_dim=16, |
| text_encoder_1_dim=32, |
| langauge_model_dim=16, |
| ) |
| |
| vocoder_config=SpeechT5HifiGanConfig( |
| model_in_dim=8, |
| sampling_rate=16000, |
| upsample_initial_channel=16, |
| upsample_rates=[2, 2], |
| upsample_kernel_sizes=[4, 4], |
| resblock_kernel_sizes=[3, 7], |
| resblock_dilation_sizes=[[1, 3, 5], [1, 3, 5]], |
| normalize_before=False, |
| ) |
| |
| vocoder=SpeechT5HifiGan(vocoder_config) |
| |
| components= { |
| "unet": unet, |
| "scheduler": scheduler, |
| "vae": vae, |
| "text_encoder": text_encoder, |
| "text_encoder_2": text_encoder_2, |
| "tokenizer": tokenizer, |
| "tokenizer_2": tokenizer_2, |
| "feature_extractor": feature_extractor, |
| "language_model": language_model, |
| "projection_model": projection_model, |
| "vocoder": vocoder, |
| } |
| returncomponents |
| |
| defget_dummy_inputs(self, device, seed=0): |
| ifstr(device).startswith("mps"): |
| generator=torch.manual_seed(seed) |
| else: |
| generator=torch.Generator(device=device).manual_seed(seed) |
| inputs= { |
| "prompt": "A hammer hitting a wooden surface", |
| "generator": generator, |
| "num_inference_steps": 2, |
| "guidance_scale": 6.0, |
| } |
| returninputs |
| |
| @pytest.mark.xfail( |
| condition=is_transformers_version(">=", "4.54.1"), |
| reason="Test currently fails on Transformers version 4.54.1.", |
| strict=False, |
| ) |
| deftest_audioldm2_ddim(self): |
| device="cpu"# ensure determinism for the device-dependent torch.Generator |
| |
| components=self.get_dummy_components() |
| audioldm_pipe=AudioLDM2Pipeline(**components) |
| audioldm_pipe=audioldm_pipe.to(torch_device) |
| audioldm_pipe.set_progress_bar_config(disable=None) |
| |
| inputs=self.get_dummy_inputs(device) |
| output=audioldm_pipe(**inputs) |
| audio=output.audios[0] |
| |
| assertaudio.ndim==1 |
| assertlen(audio) ==256 |
| |
| audio_slice=audio[:10] |
| expected_slice=np.array( |
| [ |
| 2.602e-03, |
| 1.729e-03, |
| 1.863e-03, |
| -2.219e-03, |
| -2.656e-03, |
| -2.017e-03, |
| -2.648e-03, |
| -2.115e-03, |
| -2.502e-03, |
| -2.081e-03, |
| ] |
| ) |
| |
| assertnp.abs(audio_slice-expected_slice).max() <1e-4 |
| |
| deftest_audioldm2_prompt_embeds(self): |
| components=self.get_dummy_components() |
| audioldm_pipe=AudioLDM2Pipeline(**components) |
| audioldm_pipe=audioldm_pipe.to(torch_device) |
| audioldm_pipe=audioldm_pipe.to(torch_device) |
| audioldm_pipe.set_progress_bar_config(disable=None) |
| |
| inputs=self.get_dummy_inputs(torch_device) |
| inputs["prompt"] =3* [inputs["prompt"]] |
| |
| # forward |
| output=audioldm_pipe(**inputs) |
| audio_1=output.audios[0] |
| |
| inputs=self.get_dummy_inputs(torch_device) |
| prompt=3* [inputs.pop("prompt")] |
| |
| text_inputs=audioldm_pipe.tokenizer( |
| prompt, |
| padding="max_length", |
| max_length=audioldm_pipe.tokenizer.model_max_length, |
| truncation=True, |
| return_tensors="pt", |
| ) |
| text_inputs=text_inputs["input_ids"].to(torch_device) |
| |
| clap_prompt_embeds=audioldm_pipe.text_encoder.get_text_features(text_inputs) |
| ifhasattr(clap_prompt_embeds, "pooler_output"): |
| clap_prompt_embeds=clap_prompt_embeds.pooler_output |
| clap_prompt_embeds=clap_prompt_embeds[:, None, :] |
| |
| text_inputs=audioldm_pipe.tokenizer_2( |
| prompt, |
| padding="max_length", |
| max_length=True, |
| truncation=True, |
| return_tensors="pt", |
| ) |
| text_inputs=text_inputs["input_ids"].to(torch_device) |
| |
| t5_prompt_embeds=audioldm_pipe.text_encoder_2( |
| text_inputs, |
| ) |
| t5_prompt_embeds=t5_prompt_embeds[0] |
| |
| projection_embeds=audioldm_pipe.projection_model(clap_prompt_embeds, t5_prompt_embeds)[0] |
| generated_prompt_embeds=audioldm_pipe.generate_language_model(projection_embeds, max_new_tokens=8) |
| |
| inputs["prompt_embeds"] =t5_prompt_embeds |
| inputs["generated_prompt_embeds"] =generated_prompt_embeds |
| |
| # forward |
| output=audioldm_pipe(**inputs) |
| audio_2=output.audios[0] |
| |
| assertnp.abs(audio_1-audio_2).max() <1e-2 |
| |
| deftest_audioldm2_negative_prompt_embeds(self): |
| components=self.get_dummy_components() |
| audioldm_pipe=AudioLDM2Pipeline(**components) |
| audioldm_pipe=audioldm_pipe.to(torch_device) |
| audioldm_pipe.set_progress_bar_config(disable=None) |
| |
| inputs=self.get_dummy_inputs(torch_device) |
| negative_prompt=3* ["this is a negative prompt"] |
| inputs["negative_prompt"] =negative_prompt |
| inputs["prompt"] =3* [inputs["prompt"]] |
| |
| # forward |
| output=audioldm_pipe(**inputs) |
| audio_1=output.audios[0] |
| |
| inputs=self.get_dummy_inputs(torch_device) |
| prompt=3* [inputs.pop("prompt")] |
| |
| embeds= [] |
| generated_embeds= [] |
| forpin [prompt, negative_prompt]: |
| text_inputs=audioldm_pipe.tokenizer( |
| p, |
| padding="max_length", |
| max_length=audioldm_pipe.tokenizer.model_max_length, |
| truncation=True, |
| return_tensors="pt", |
| ) |
| text_inputs=text_inputs["input_ids"].to(torch_device) |
| |
| clap_prompt_embeds=audioldm_pipe.text_encoder.get_text_features(text_inputs) |
| ifhasattr(clap_prompt_embeds, "pooler_output"): |
| clap_prompt_embeds=clap_prompt_embeds.pooler_output |
| clap_prompt_embeds=clap_prompt_embeds[:, None, :] |
| |
| text_inputs=audioldm_pipe.tokenizer_2( |
| prompt, |
| padding="max_length", |
| max_length=Trueiflen(embeds) ==0elseembeds[0].shape[1], |
| truncation=True, |
| return_tensors="pt", |
| ) |
| text_inputs=text_inputs["input_ids"].to(torch_device) |
| |
| t5_prompt_embeds=audioldm_pipe.text_encoder_2( |
| text_inputs, |
| ) |
| t5_prompt_embeds=t5_prompt_embeds[0] |
| |
| projection_embeds=audioldm_pipe.projection_model(clap_prompt_embeds, t5_prompt_embeds)[0] |
| generated_prompt_embeds=audioldm_pipe.generate_language_model(projection_embeds, max_new_tokens=8) |
| |
| embeds.append(t5_prompt_embeds) |
| generated_embeds.append(generated_prompt_embeds) |
| |
| inputs["prompt_embeds"], inputs["negative_prompt_embeds"] =embeds |
| inputs["generated_prompt_embeds"], inputs["negative_generated_prompt_embeds"] =generated_embeds |
| |
| # forward |
| output=audioldm_pipe(**inputs) |
| audio_2=output.audios[0] |
| |
| assertnp.abs(audio_1-audio_2).max() <1e-2 |
| |
| @pytest.mark.xfail( |
| condition=is_transformers_version(">=", "4.54.1"), |
| reason="Test currently fails on Transformers version 4.54.1.", |
| strict=False, |
| ) |
| deftest_audioldm2_negative_prompt(self): |
| device="cpu"# ensure determinism for the device-dependent torch.Generator |
| components=self.get_dummy_components() |
| components["scheduler"] =PNDMScheduler(skip_prk_steps=True) |
| audioldm_pipe=AudioLDM2Pipeline(**components) |
| audioldm_pipe=audioldm_pipe.to(device) |
| audioldm_pipe.set_progress_bar_config(disable=None) |
| |
| inputs=self.get_dummy_inputs(device) |
| negative_prompt="egg cracking" |
| output=audioldm_pipe(**inputs, negative_prompt=negative_prompt) |
| audio=output.audios[0] |
| |
| assertaudio.ndim==1 |
| assertlen(audio) ==256 |
| |
| audio_slice=audio[:10] |
| expected_slice=np.array( |
| [0.0026, 0.0017, 0.0018, -0.0022, -0.0026, -0.002, -0.0026, -0.0021, -0.0025, -0.0021] |
| ) |
| |
| assertnp.abs(audio_slice-expected_slice).max() <1e-4 |
| |
| deftest_audioldm2_num_waveforms_per_prompt(self): |
| device="cpu"# ensure determinism for the device-dependent torch.Generator |
| components=self.get_dummy_components() |
| components["scheduler"] =PNDMScheduler(skip_prk_steps=True) |
| audioldm_pipe=AudioLDM2Pipeline(**components) |
| audioldm_pipe=audioldm_pipe.to(device) |
| audioldm_pipe.set_progress_bar_config(disable=None) |
| |
| prompt="A hammer hitting a wooden surface" |
| |
| # test num_waveforms_per_prompt=1 (default) |
| audios=audioldm_pipe(prompt, num_inference_steps=2).audios |
| |
| assertaudios.shape== (1, 256) |
| |
| # test num_waveforms_per_prompt=1 (default) for batch of prompts |
| batch_size=2 |
| audios=audioldm_pipe([prompt] *batch_size, num_inference_steps=2).audios |
| |
| assertaudios.shape== (batch_size, 256) |
| |
| # test num_waveforms_per_prompt for single prompt |
| num_waveforms_per_prompt=1 |
| audios=audioldm_pipe(prompt, num_inference_steps=2, num_waveforms_per_prompt=num_waveforms_per_prompt).audios |
| |
| assertaudios.shape== (num_waveforms_per_prompt, 256) |
| |
| # test num_waveforms_per_prompt for batch of prompts |
| batch_size=2 |
| audios=audioldm_pipe( |
| [prompt] *batch_size, num_inference_steps=2, num_waveforms_per_prompt=num_waveforms_per_prompt |
| ).audios |
| |
| assertaudios.shape== (batch_size*num_waveforms_per_prompt, 256) |
| |
| deftest_audioldm2_audio_length_in_s(self): |
| device="cpu"# ensure determinism for the device-dependent torch.Generator |
| components=self.get_dummy_components() |
| audioldm_pipe=AudioLDM2Pipeline(**components) |
| audioldm_pipe=audioldm_pipe.to(torch_device) |
| audioldm_pipe.set_progress_bar_config(disable=None) |
| vocoder_sampling_rate=audioldm_pipe.vocoder.config.sampling_rate |
| |
| inputs=self.get_dummy_inputs(device) |
| output=audioldm_pipe(audio_length_in_s=0.016, **inputs) |
| audio=output.audios[0] |
| |
| assertaudio.ndim==1 |
| assertlen(audio) /vocoder_sampling_rate==0.016 |
| |
| output=audioldm_pipe(audio_length_in_s=0.032, **inputs) |
| audio=output.audios[0] |
| |
| assertaudio.ndim==1 |
| assertlen(audio) /vocoder_sampling_rate==0.032 |
| |
| deftest_audioldm2_vocoder_model_in_dim(self): |
| components=self.get_dummy_components() |
| audioldm_pipe=AudioLDM2Pipeline(**components) |
| audioldm_pipe=audioldm_pipe.to(torch_device) |
| audioldm_pipe.set_progress_bar_config(disable=None) |
| |
| prompt= ["hey"] |
| |
| output=audioldm_pipe(prompt, num_inference_steps=1) |
| audio_shape=output.audios.shape |
| assertaudio_shape== (1, 256) |
| |
| config=audioldm_pipe.vocoder.config |
| config.model_in_dim*=2 |
| audioldm_pipe.vocoder=SpeechT5HifiGan(config).to(torch_device) |
| output=audioldm_pipe(prompt, num_inference_steps=1) |
| audio_shape=output.audios.shape |
| # waveform shape is unchanged, we just have 2x the number of mel channels in the spectrogram |
| assertaudio_shape== (1, 256) |
| |
| deftest_attention_slicing_forward_pass(self): |
| self._test_attention_slicing_forward_pass(test_mean_pixel_difference=False) |
| |
| @unittest.skip("Raises a not implemented error in AudioLDM2") |
| deftest_xformers_attention_forwardGenerator_pass(self): |
| pass |
| |
| deftest_dict_tuple_outputs_equivalent(self): |
| # increase tolerance from 1e-4 -> 3e-4 to account for large composite model |
| super().test_dict_tuple_outputs_equivalent(expected_max_difference=3e-4) |
| |
| @pytest.mark.xfail( |
| condition=is_torch_version(">=", "2.7"), |
| reason="Test currently fails on PyTorch 2.7.", |
| strict=False, |
| ) |
| deftest_inference_batch_single_identical(self): |
| # increase tolerance from 1e-4 -> 2e-4 to account for large composite model |
| self._test_inference_batch_single_identical(expected_max_diff=2e-4) |
| |
| deftest_save_load_local(self): |
| # increase tolerance from 1e-4 -> 2e-4 to account for large composite model |
| super().test_save_load_local(expected_max_difference=2e-4) |
| |
| deftest_save_load_optional_components(self): |
| # increase tolerance from 1e-4 -> 2e-4 to account for large composite model |
| super().test_save_load_optional_components(expected_max_difference=2e-4) |
| |
| deftest_to_dtype(self): |
| components=self.get_dummy_components() |
| pipe=self.pipeline_class(**components) |
| pipe.set_progress_bar_config(disable=None) |
| |
| # The method component.dtype returns the dtype of the first parameter registered in the model, not the |
| # dtype of the entire model. In the case of CLAP, the first parameter is a float64 constant (logit scale) |
| model_dtypes= {key: component.dtypeforkey, componentincomponents.items() ifhasattr(component, "dtype")} |
| |
| # Without the logit scale parameters, everything is float32 |
| model_dtypes.pop("text_encoder") |
| self.assertTrue(all(dtype==torch.float32fordtypeinmodel_dtypes.values())) |
| |
| # the CLAP sub-models are float32 |
| model_dtypes["clap_text_branch"] =components["text_encoder"].text_model.dtype |
| self.assertTrue(all(dtype==torch.float32fordtypeinmodel_dtypes.values())) |
| |
| # Once we send to fp16, all params are in half-precision, including the logit scale |
| pipe.to(dtype=torch.float16) |
| model_dtypes= {key: component.dtypeforkey, componentincomponents.items() ifhasattr(component, "dtype")} |
| self.assertTrue(all(dtype==torch.float16fordtypeinmodel_dtypes.values())) |
| |
| @unittest.skip("Test not supported.") |
| deftest_sequential_cpu_offload_forward_pass(self): |
| pass |
| |
| @unittest.skip("Test not supported for now because of the use of `projection_model` in `encode_prompt()`.") |
| deftest_encode_prompt_works_in_isolation(self): |
| pass |
| |
| @unittest.skip("Not supported yet due to CLAPModel.") |
| deftest_sequential_offload_forward_pass_twice(self): |
| pass |
| |
| @unittest.skip("Not supported yet, the second forward has mixed devices and `vocoder` is not offloaded.") |
| deftest_cpu_offload_forward_pass_twice(self): |
| pass |
| |
| @unittest.skip("Not supported yet. `vocoder` is not offloaded.") |
| deftest_model_cpu_offload_forward_pass(self): |
| pass |
| |
| |
| @nightly |
| classAudioLDM2PipelineSlowTests(unittest.TestCase): |
| defsetUp(self): |
| super().setUp() |
| gc.collect() |
| backend_empty_cache(torch_device) |
| |
| deftearDown(self): |
| super().tearDown() |
| gc.collect() |
| backend_empty_cache(torch_device) |
| |
| defget_inputs(self, device, generator_device="cpu", dtype=torch.float32, seed=0): |
| generator=torch.Generator(device=generator_device).manual_seed(seed) |
| latents=np.random.RandomState(seed).standard_normal((1, 8, 128, 16)) |
| latents=torch.from_numpy(latents).to(device=device, dtype=dtype) |
| inputs= { |
| "prompt": "A hammer hitting a wooden surface", |
| "latents": latents, |
| "generator": generator, |
| "num_inference_steps": 3, |
| "guidance_scale": 2.5, |
| } |
| returninputs |
| |
| defget_inputs_tts(self, device, generator_device="cpu", dtype=torch.float32, seed=0): |
| generator=torch.Generator(device=generator_device).manual_seed(seed) |
| latents=np.random.RandomState(seed).standard_normal((1, 8, 128, 16)) |
| latents=torch.from_numpy(latents).to(device=device, dtype=dtype) |
| inputs= { |
| "prompt": "A men saying", |
| "transcription": "hello my name is John", |
| "latents": latents, |
| "generator": generator, |
| "num_inference_steps": 3, |
| "guidance_scale": 2.5, |
| } |
| returninputs |
| |
| deftest_audioldm2(self): |
| audioldm_pipe=AudioLDM2Pipeline.from_pretrained("cvssp/audioldm2") |
| audioldm_pipe=audioldm_pipe.to(torch_device) |
| audioldm_pipe.set_progress_bar_config(disable=None) |
| |
| inputs=self.get_inputs(torch_device) |
| inputs["num_inference_steps"] =25 |
| audio=audioldm_pipe(**inputs).audios[0] |
| |
| assertaudio.ndim==1 |
| assertlen(audio) ==81952 |
| |
| # check the portion of the generated audio with the largest dynamic range (reduces flakiness) |
| audio_slice=audio[17275:17285] |
| expected_slice=np.array([0.0791, 0.0666, 0.1158, 0.1227, 0.1171, -0.2880, -0.1940, -0.0283, -0.0126, 0.1127]) |
| max_diff=np.abs(expected_slice-audio_slice).max() |
| assertmax_diff<1e-3 |
| |
| deftest_audioldm2_lms(self): |
| audioldm_pipe=AudioLDM2Pipeline.from_pretrained("cvssp/audioldm2") |
| audioldm_pipe.scheduler=LMSDiscreteScheduler.from_config(audioldm_pipe.scheduler.config) |
| audioldm_pipe=audioldm_pipe.to(torch_device) |
| audioldm_pipe.set_progress_bar_config(disable=None) |
| |
| inputs=self.get_inputs(torch_device) |
| audio=audioldm_pipe(**inputs).audios[0] |
| |
| assertaudio.ndim==1 |
| assertlen(audio) ==81952 |
| |
| # check the portion of the generated audio with the largest dynamic range (reduces flakiness) |
| audio_slice=audio[31390:31400] |
| expected_slice=np.array( |
| [-0.1318, -0.0577, 0.0446, -0.0573, 0.0659, 0.1074, -0.2600, 0.0080, -0.2190, -0.4301] |
| ) |
| max_diff=np.abs(expected_slice-audio_slice).max() |
| assertmax_diff<1e-3 |
| |
| deftest_audioldm2_large(self): |
| audioldm_pipe=AudioLDM2Pipeline.from_pretrained("cvssp/audioldm2-large") |
| audioldm_pipe=audioldm_pipe.to(torch_device) |
| audioldm_pipe.set_progress_bar_config(disable=None) |
| |
| inputs=self.get_inputs(torch_device) |
| audio=audioldm_pipe(**inputs).audios[0] |
| |
| assertaudio.ndim==1 |
| assertlen(audio) ==81952 |
| |
| # check the portion of the generated audio with the largest dynamic range (reduces flakiness) |
| audio_slice=audio[8825:8835] |
| expected_slice=np.array( |
| [-0.1829, -0.1461, 0.0759, -0.1493, -0.1396, 0.5783, 0.3001, -0.3038, -0.0639, -0.2244] |
| ) |
| max_diff=np.abs(expected_slice-audio_slice).max() |
| assertmax_diff<1e-3 |
| |
| deftest_audioldm2_tts(self): |
audioldm2model/pipeline reviewCommit tested:
0f1abc4ae8b0eb2a3b40e82a310507281144c423Review performed against
.ai/review-rules.mdand all present referenced rule files.AGENTS.mdwas referenced by the rules but is not present in this checkout.Duplicate search: checked GitHub issues/PRs for
audioldm2,AudioLDM2ProjectionModel,AudioLDM2UNet2DConditionModel,pipeline_audioldm2,modeling_audioldm2,cross_attention_kwargs, gradient-checkpointing masks, scoring, andcross_attention_dim IndexError. I did not find likely duplicates for the issues below. Existing #12630 / PR #13111 cover a different GPT2Model AttributeError.Issue 1: Projection mask fallback crashes when only one mask is provided
Affected code:
diffusers/src/diffusers/pipelines/audioldm2/modeling_audioldm2.py
Lines 143 to 153 in 0f1abc4
Problem:
AudioLDM2ProjectionModel.forward()callsnew_ones((hidden_states[:2]))andnew_ones((hidden_states_1[:2])). Those are tensor slices, not shape tuples, so direct projection-model use crashes when one encoder mask is provided and the other is omitted. The first branch is also placed after concatenatinghidden_states, so even changing it tohidden_states.shape[:2]there would create the wrong sequence length.Impact:
Users providing one precomputed attention mask cannot use the projection model directly, and pipeline paths that mix precomputed embeddings/masks are fragile.
Reproduction:
Relevant precedent:
Use tensor
.shape[:2]for mask creation, as the pipeline already does for default prompt masks.Suggested fix:
Issue 2: Omitted second encoder states ignore the first encoder mask
Affected code:
diffusers/src/diffusers/pipelines/audioldm2/modeling_audioldm2.py
Lines 1039 to 1044 in 0f1abc4
diffusers/src/diffusers/pipelines/audioldm2/modeling_audioldm2.py
Lines 1200 to 1205 in 0f1abc4
diffusers/src/diffusers/pipelines/audioldm2/modeling_audioldm2.py
Lines 1352 to 1357 in 0f1abc4
Problem:
The blocks first replace
encoder_hidden_states_1=Nonewithencoder_hidden_states, then decide whether to fallbackencoder_attention_mask_1based on the already-mutatedencoder_hidden_states_1. As a result, the second cross-attention stream uses the first hidden states but drops the first mask.Impact:
Calling
AudioLDM2UNet2DConditionModelwith onlyencoder_hidden_statesandencoder_attention_maskproduces different results than explicitly passing the same states/mask as stream 1.Reproduction:
Relevant precedent:
The intended fallback is visible from the code itself: stream 1 defaults to stream 0 when omitted.
Suggested fix:
Issue 3:
cross_attention_kwargsis accepted but ignoredAffected code:
diffusers/src/diffusers/pipelines/audioldm2/pipeline_audioldm2.py
Lines 1069 to 1077 in 0f1abc4
diffusers/src/diffusers/pipelines/audioldm2/modeling_audioldm2.py
Lines 1081 to 1087 in 0f1abc4
diffusers/src/diffusers/pipelines/audioldm2/modeling_audioldm2.py
Lines 1241 to 1247 in 0f1abc4
diffusers/src/diffusers/pipelines/audioldm2/modeling_audioldm2.py
Lines 1399 to 1405 in 0f1abc4
Problem:
AudioLDM2Pipeline.__call__()exposescross_attention_kwargs, but does not pass it to the UNet. The UNet block normal paths also do not passcross_attention_kwargstoTransformer2DModel.Impact:
Custom attention processors and LoRA-style attention kwargs silently do nothing in normal inference.
Reproduction:
Relevant precedent:
diffusers/src/diffusers/models/unets/unet_2d_blocks.py
Lines 1257 to 1277 in 0f1abc4
Suggested fix:
Issue 4: Gradient checkpointing misroutes
Transformer2DModelargumentsAffected code:
diffusers/src/diffusers/pipelines/audioldm2/modeling_audioldm2.py
Lines 1059 to 1068 in 0f1abc4
diffusers/src/diffusers/pipelines/audioldm2/modeling_audioldm2.py
Lines 1219 to 1228 in 0f1abc4
diffusers/src/diffusers/pipelines/audioldm2/modeling_audioldm2.py
Lines 1377 to 1386 in 0f1abc4
Problem:
The gradient-checkpointing branch calls
Transformer2DModelpositionally using a stale signature. With the current signature,cross_attention_kwargs,attention_mask, andencoder_attention_maskare shifted into the wrong parameters.Impact:
_supports_gradient_checkpointing=Trueis advertised, but training with gradient checkpointing and encoder masks can crash or use the wrong masks.Reproduction:
Relevant precedent:
diffusers/src/diffusers/models/unets/unet_2d_blocks.py
Lines 1257 to 1277 in 0f1abc4
Suggested fix:
Do not checkpoint-call
Transformer2DModelpositionally. Follow the regular UNet block pattern: checkpoint the ResNet, then call the attention module with keyword arguments so the nestedTransformer2DModelhandles its own checkpointing.Issue 5: Automatic scoring ranks across the full batch, not per prompt
Affected code:
diffusers/src/diffusers/pipelines/audioldm2/pipeline_audioldm2.py
Lines 724 to 728 in 0f1abc4
Problem:
score_waveforms()sorts each prompt against every generated waveform, then index-selects globally. For batched prompts withnum_waveforms_per_prompt > 1, a prompt can select waveforms generated for another prompt.Impact:
The returned audio order can mix prompts, so users may receive a waveform for the wrong prompt after automatic scoring.
Reproduction:
Relevant precedent:
No good in-repo precedent found;
MusicLDMPipelinecopies this method and appears to carry the same behavior.Suggested fix:
Issue 6: Tuple
cross_attention_dimlength is not validatedAffected code:
diffusers/src/diffusers/pipelines/audioldm2/modeling_audioldm2.py
Lines 323 to 326 in 0f1abc4
diffusers/src/diffusers/pipelines/audioldm2/modeling_audioldm2.py
Lines 423 to 435 in 0f1abc4
Problem:
The constructor validates mismatched
cross_attention_dimonly when it is alist, but the public type allows tuples. A short tuple falls through and later raises anIndexError.Impact:
Invalid configs fail with an opaque internal error instead of the intended config validation error. This is especially confusing for
from_config()/ custom checkpoint users.Reproduction:
Relevant precedent:
The same constructor already validates tuple-like
attention_head_dimandlayers_per_block.Suggested fix:
Coverage status
Fast and slow AudioLDM2 tests exist:
diffusers/tests/pipelines/audioldm2/test_audioldm2.py
Lines 62 to 650 in 0f1abc4
Slow coverage is present for
cvssp/audioldm2, LMS,cvssp/audioldm2-large, andanhnct/audioldm2_gigaspeech. Several offload / isolation tests remain skipped:diffusers/tests/pipelines/audioldm2/test_audioldm2.py
Lines 533 to 550 in 0f1abc4
Local pytest collection could not complete in
.venvbecause the installed torch build is missingtorch._C._distributed_c10d; the standalone repro snippets above were run successfully under.venv.