76b2432b1c1ee03c80895a5c7d49cde485323102,qucumber/nn_states/complex_wavefunction.py,ComplexWaveFunction,rotated_gradient,#ComplexWaveFunction#Any#Any#Any#,163
Before Change
torch.matmul(Upsi_v, grad_vp0, out=rotated_grad[0 ])
torch.matmul(Upsi_v, grad_vp1, out=rotated_grad[1 ])
grad = [
cplx.real(cplx.scalar_divide(rotated_grad[0 ], Upsi)),
After Change
vr = v.reshape(-1 , v.shape[-1 ])
raw_grads = [
self.am_grads(vr).reshape(2 , *v.shape[:-1 ], -1 ),
self.ph_grads(vr).reshape(2 , *v.shape[:-1 ], -1 ) ,
]
rotated_grad = [cplx.einsum("s...,s...g->...g" , Upsi_v, g) for g in raw_grads]
grad = [
cplx.real(cplx.scalar_divide(rotated_grad[0 ], Upsi)),
cplx.real(cplx.scalar_divide(rotated_grad[1 ], Upsi)),
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances Project Name: PIQuIL/QuCumber
Commit Name: 76b2432b1c1ee03c80895a5c7d49cde485323102
Time: 2019-12-22
Author: emerali@users.noreply.github.com
File Name: qucumber/nn_states/complex_wavefunction.py
Class Name: ComplexWaveFunction
Method Name: rotated_gradient
Project Name: deepmind/sonnet
Commit Name: bc08dbfbe77554bf3458529285003f0bf92eecd3
Time: 2018-07-17
Author: fviola@google.com
File Name: sonnet/python/modules/nets/vqvae.py
Class Name: VectorQuantizer
Method Name: _build
Project Name: deepmind/sonnet
Commit Name: bc08dbfbe77554bf3458529285003f0bf92eecd3
Time: 2018-07-17
Author: fviola@google.com
File Name: sonnet/python/modules/nets/vqvae.py
Class Name: VectorQuantizerEMA
Method Name: _build