摘要:
变分法 Post-Hartree Fock方法 组态相互作用(configuration interaction,CI)方法 完全组态相互作用(full configuration interaction,FCI)方法 自旋翻转(spin-flip)的CI(SF-CI)方法 SF-CISD方法 约化 阅读全文
摘要:
2.5 自动微分 1. 一个简单的例子 import torch x = torch.arange(4.0) y = 2 * torch.dot(x, x) y.backward() x.grad x.grad.zero_() # 在默认情况下,PyTorch会累积梯度,我们需要清除之前的值 y = 阅读全文
摘要:
2.3 线性代数 1. 基本数学对象 对象 数学符号 代码 标量 x torch.tensor(1.0) 向量 x torch.arange(3) 矩阵 A torch.arange(20).reshape(5,4) 张量 X torch.arange(24).reshape(2,3,4) 2. 基 阅读全文