Zhongweiyang Xu
Zhongweiyang Xu
fix plot_individual_spectrum for music doa estimation Thanks for sending a pull request (PR), we really appreciate that! Before hitting the submit button, we'd be really glad if you could make...
line 150 in music.py, `self.Pssl[k, 0 : len(azimuth)]` should be `self.Pssl[0 : len(azimuth), k]`, the index got reverted by the function _compute_spatial_spectrumvec #
Hi! I know this is a torch vision of iva, but I'm still wondering what's the difference between torchiva's iva algorithm and your overival's repo's algorithm. When I run the...
``` norm=torch.linalg.norm(y-den_rec,dim=dim,` ord=2) rec_grads=torch.autograd.grad(outputs=norm, inputs=x) rec_grads=rec_grads[0] normguide=torch.linalg.norm(rec_grads)/x.shape[-1]**0.5 #normalize scaling s=self.xi/(normguide*t_i+1e-6) #optionally apply a treshold to the gradients if self.treshold_on_grads>0: #pply tresholding to the gradients. It is a dirty trick but...