简体   繁体   English

使用numpy / pytorch广播计算矩阵产品的跟踪

[英]Compute trace of matrix product using numpy/pytorch broadcasting

Let A be an (nxm)-matrix and M an (mxm)-matrix. 设A为(nxm)矩阵,M为(mxm)矩阵。 Writing tr() for the trace of a matrix, I need to compute tr(AM(A^T)). 为矩阵的轨迹编写tr(),我需要计算tr(AM(A ^ T))。 However, the final trace operation throws away most of the computation. 但是,最终的跟踪操作将丢弃大部分计算。 Can I use numpy's or pytorch's broadcasting rules to compute only the necessary diagonal of AM(A^T)? 我可以使用numpy或pytorch的广播规则来仅计算AM(A ^ T)的必要对角线吗?

Update: Here is my solution to compute the diagonal in PyTorch: 更新:这是我在PyTorch中计算对角线的解决方案:

torch.sum(torch.sum(At()[:,None,:]*M[:,:,None],0)*At(),0)

You will have to compute at least one of the two matrix products. 您将必须计算至少两个矩阵乘积之一。 Subsequently you can use one of the answers here: What is the best way to compute the trace of a matrix product in numpy? 随后,您可以在这里使用答案之一: 在numpy中计算矩阵乘积的迹线的最佳方法是什么?

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM