"docs/vscode:/vscode.git/clone" did not exist on "86087957117649524c671563e3e051eadfdad5e8"
  1. 30 Dec, 2024 1 commit
  2. 28 Dec, 2024 1 commit
  3. 27 Dec, 2024 3 commits
  4. 25 Dec, 2024 2 commits
  5. 24 Dec, 2024 6 commits
  6. 23 Dec, 2024 19 commits
  7. 21 Dec, 2024 5 commits
  8. 20 Dec, 2024 3 commits
    • Junsong Chen's avatar
      [Sana]add 2K related model for Sana (#10322) · a6288a55
      Junsong Chen authored
      add 2K related model for Sana
      a6288a55
    • Steven Liu's avatar
      [docs] Fix quantization links (#10323) · 7d4db570
      Steven Liu authored
      Update overview.md
      7d4db570
    • Aditya Raj's avatar
      [BUG FIX] [Stable Audio Pipeline] Resolve torch.Tensor.new_zeros() TypeError... · 90200860
      Aditya Raj authored
      
      [BUG FIX] [Stable Audio Pipeline] Resolve torch.Tensor.new_zeros() TypeError in function prepare_latents caused by audio_vae_length (#10306)
      
      [BUG FIX] [Stable Audio Pipeline] TypeError: new_zeros(): argument 'size' failed to unpack the object at pos 3 with error "type must be tuple of ints,but got float"
      
      torch.Tensor.new_zeros() takes a single argument size (int...) – a list, tuple, or torch.Size of integers defining the shape of the output tensor.
      
      in function prepare_latents:
      audio_vae_length = self.transformer.config.sample_size * self.vae.hop_length
      audio_shape = (batch_size // num_waveforms_per_prompt, audio_channels, audio_vae_length)
      ...
      audio = initial_audio_waveforms.new_zeros(audio_shape)
      
      audio_vae_length evaluates to float because self.transformer.config.sample_size returns a float
      Co-authored-by: default avatarhlky <hlky@hlky.ac>
      90200860