变分高斯玻色采样的训练#
引言#
受到机器学习中神经网络成功的启发,许多应用层面的量子算法依赖于变分量子线路的训练,包括:
量子神经网络(Quantum Neural Networks, QNNs):一类模仿经典神经网络结构的量子算法,它们使用可变分的量子网络来表示信息,并利用量子力学原理进行信息处理。
量子支持向量机(Quantum Support Vector Machine, QSVM):使用变分量子线路定义核函数,用于解决凸优化、分类问题等。
量子近似优化算法(Quantum Approximate Optimization Algorithm, QAOA):通过调整量子线路的参数来找到优化问题的近似最优解。
变分量子本征求解器(Variational Quantum Eigensolver, VQE):一种用于求解分子能量基态问题的量子算法,通过训练量子线路的参数来近似哈密顿量的最低本征值。
量子机器学习算法(Quantum Machine Learning Algorithms):使用可变分的量子算法来加速机器学习任务,例如量子数据编码、量子特征提取等。
量子随机特征(Quantum Random Feature, QRF):将量子计算与经典机器学习模型结合的方法,通过量子线路生成高维空间中的随机特征,以提高模型的性能。
在DeepQuantum常规量子线路中,我们也已经展示了若干从简单、中级到困难的变分量子算法的案例
对于光量子模块,光量子入门介绍演示了如何搭建含参数的光量子线路,并用Fock后端进行采样测量。
那么,对于独具特色的高斯玻色采样(Gaussian Boson Sampling,简称GBS)任务,我们是否也能完成对于变分线路的构建和训练呢?
理论基础#
在关于高斯玻色采样的介绍中,我们对高斯玻色采样(GBS)进行了细致的介绍。形如玻色采样的概率分布,对于GBS设备,观察到特定输出分布\(S\)的概率\(\Pr(S)\)如下:
其中,\(S=(s_1, s_2, \ldots, s_m)\), \(s_i\)是在第\(i\)个mode探测到的光子数。 而\(\mathcal{N}\) 是一个归一化常数,\(A\)是一个任意的特征值在 \(-1\) 和\(1\)间的对称矩阵。 矩阵 \(A\)也可以通过一个常数因子进行重新缩放,相当于定义在目标概率分布中总的平均光子数。
我们希望对这种分布进行训练,以执行特定任务。例如,希望再现给定数据集的统计特性,或者优化线路以高概率采样特定模式。以此,任何变分量子算法都有可能在GBS设备上实现。
用数学随机优化模型来表示,给定一个函数\(h(S)\)和参数\(\theta\),我们可以通过采样得到概率分布\(P_{\theta}(S)\)。而任务的目标则是找到合适的参数\(\theta\),来最小化如下期望值:
此案例将聚焦一个简单的5节点的棒棒糖🍭图。通过变分高斯玻色采样的训练,我们期望在特定的节点观察到尽可能多的光子,而在别的节点观察到尽量少的光子。
完成此变分案例需要以下3步:(i)选用合适的方法编码参数;(ii)调用DeepQuantum模块完成GBS采样模拟;(iii)根据采样结果,选取合适损失函数和优化器完成优化。
问题转化与参数化#
我们将会调用DeepQuantum中GBS模块,详情可见API文档
首先调用DeepQauntum和相关包:
import deepquantum as dq
import matplotlib.pyplot as plt
import networkx as nx
import torch
import torch.nn as nn
调用networkx包以生成5节点的棒棒糖🍭图,并获得邻接矩阵以对应GBS中特征值在 \(-1\) 和\(1\)间的的对称矩阵\(A\)。
graph = nx.lollipop_graph(3, 2)
# 计算邻接矩阵
a = nx.to_numpy_array(graph)
print('邻接矩阵A:', a)
# 可视化图像
nx.draw(graph, with_labels=True)
邻接矩阵A: [[0. 1. 1. 0. 0.]
[1. 0. 1. 0. 0.]
[1. 1. 0. 1. 0.]
[0. 0. 1. 0. 1.]
[0. 0. 0. 1. 0.]]
此时,若无参数化需要,GBS可通过邻接矩阵\(A\)采样生成概率分布\(P(S)\):
gbs = dq.photonic.ansatz.GBS_Graph(adj_mat=a, cutoff=3, mean_photon_num=6)
gbs()
# 高斯玻色采样
sample = gbs.measure(mcmc=True)
print('采样结果为:', sample)
# 计算每个节点理论平均光子数
photon_number = gbs.photon_number_mean_var()[0]
print('每个节点平均光子数为:', photon_number)
Using MCMC method to sample the final states!
chain 1: 100%|███████████████████████████████| 203/203 [00:00<00:00, 670.23it/s]
chain 2: 100%|██████████████████████████████| 203/203 [00:00<00:00, 1292.92it/s]
chain 3: 100%|██████████████████████████████| 203/203 [00:00<00:00, 2425.01it/s]
chain 4: 100%|██████████████████████████████| 203/203 [00:00<00:00, 8826.45it/s]
chain 5: 100%|█████████████████████████████| 207/207 [00:00<00:00, 20708.41it/s]
采样结果为: {|00000>: 770, |11220>: 1, |11110>: 12, |10100>: 2, |00011>: 7, |10210>: 18, |21100>: 72, |11000>: 44, |11200>: 35, |22200>: 2, |00110>: 8, |01210>: 26, |01100>: 9, |00220>: 1, |11121>: 2, |00121>: 15}
每个节点平均光子数为: tensor([1.3273, 1.3273, 2.0721, 0.9466, 0.3268], dtype=torch.float64)
为了实现变分优化,需要编码参数\(\theta\)进GBS设备,即参数化矩阵\(A\)。论文Training Gaussian Boson Sampling Distributions中引入了“WAW”的参数化方式,即将对称矩阵\(A\)转化为
其中\(W = \text{diag}(\sqrt{w_1}, \sqrt{w_2}, \ldots, \sqrt{w_m})\) 是对角权重矩阵, \(m\)是GBS模式数。 这样的构造既可以方便的通过权重\(w\)实现参数化,又保留了\(A\)对称的特性。另外,在计算\(A_W\)的hafnian值时,可通过以下分解分离参数化部分,不会额外增加hafnian的计算难度:
于是,我们可以方便地编码可训练参数\(\theta = (\theta_1, \ldots, \theta_d)\) 进权重 \(w_k\)。这里,我们选用指数嵌入的形式,
# 生成初始参数
nr_modes = len(a)
params = torch.randn(nr_modes, dtype=torch.float64)
print('初始化参数为: ', params)
# 编码进权重矩阵
weights = torch.exp(-params)
print('指数权重为: ', weights)
w = torch.diag(weights)
print('权重矩阵为: ', w)
# 实现WAW参数化
waw = w @ torch.tensor(a) @ w
print('WAW矩阵为: ', waw)
初始化参数为: tensor([ 0.0129, -0.2667, -1.5915, 0.6742, 0.5164], dtype=torch.float64)
指数权重为: tensor([0.9872, 1.3057, 4.9113, 0.5096, 0.5966], dtype=torch.float64)
权重矩阵为: tensor([[0.9872, 0.0000, 0.0000, 0.0000, 0.0000],
[0.0000, 1.3057, 0.0000, 0.0000, 0.0000],
[0.0000, 0.0000, 4.9113, 0.0000, 0.0000],
[0.0000, 0.0000, 0.0000, 0.5096, 0.0000],
[0.0000, 0.0000, 0.0000, 0.0000, 0.5966]], dtype=torch.float64)
WAW矩阵为: tensor([[0.0000, 1.2889, 4.8483, 0.0000, 0.0000],
[1.2889, 0.0000, 6.4127, 0.0000, 0.0000],
[4.8483, 6.4127, 0.0000, 2.5026, 0.0000],
[0.0000, 0.0000, 2.5026, 0.0000, 0.3040],
[0.0000, 0.0000, 0.0000, 0.3040, 0.0000]], dtype=torch.float64)
调用DeepQuantum模块完成GBS采样模拟#
如前模块所示,调用DeepQuantum实现GBS采样模拟十分便捷。高斯玻色采样(GBS)分布由对称矩阵 \(A\) 决定,在经过WAW方法参数化后,我们只需要输入waw矩阵。
总的平均光子数是分布的一个超参数:一般而言,不同的选择可能会导致训练中得到不同的结果。实际上,随着权重被优化,平均光子数在训练过程中可能会发生变化,但不会影响最终相对的概率分布。
最后,GBS设备可以操作具有分辨光子数能力的探测器或阈值探测器,这里我们只使用每个模式上的平均光子数。
# 根据精度需求设定cutoff
# 设定平均光子数为6(也可设置其它)
gbs = dq.photonic.GraphGBS(adj_mat=waw, cutoff=3, mean_photon_num=6)
gbs()
# 计算每个节点理论平均光子数
photon_number = gbs.photon_number_mean_var()[0]
print('每个节点平均光子数为:', photon_number)
每个节点平均光子数为: tensor([1.0830e+00, 1.7796e+00, 2.8913e+00, 2.4493e-01, 1.1499e-03],
dtype=torch.float64)
选取损失函数和优化器,完成优化#
根据案例开头的需求,在一个5节点的棒棒糖图中,通过变分高斯玻色采样的训练,我们期望在特定的节点观察到尽可能多的光子,而在别的节点观察到尽量少的光子。不失一般性,我们致力于增加棒棒糖图的“糖果”部分中的光子数,这对应于模式子集[0, 1, 2]。
损失函数的构建很多样,先采用最简单的线性损失函数:
# 构建期望模式子集
subset = [0, 1, 2]
# 构建损失函数
def target(s):
not_subset = [k for k in range(len(s)) if k not in subset]
return sum(s[not_subset]) - sum(s[subset])
print('loss值为: ', target(photon_number))
loss值为: tensor(-5.5078, dtype=torch.float64)
接下来仅需通过优化器,最小化损失函数的值,便可完成对于变分高斯玻色采样设备的训练。
为了方便调用优化器,我们整合上面代码,组合成一个VGBS的class。
graph = nx.lollipop_graph(3, 2)
a = nx.to_numpy_array(graph)
nr_modes = len(a)
subset = [0, 1, 2]
loss_history = []
result = []
class VGBS(nn.Module):
def __init__(self):
super().__init__()
self.params = nn.Parameter(torch.randn(nr_modes, dtype=torch.float64), requires_grad=False)
loss_history.clear()
def target(self, s):
not_subset = [k for k in range(len(s)) if k not in subset]
return sum(s[not_subset]) - sum(s[subset])
def loss(self, x):
if not isinstance(x, torch.Tensor):
x = torch.tensor(x).to(self.params.dtype).reshape(-1)
weights = torch.exp(-x)
w = torch.diag(weights)
waw = w @ torch.tensor(a) @ w
gbs = dq.photonic.GBS_Graph(adj_mat=waw, cutoff=5, mean_photon_num=6)
gbs()
photon_number = gbs.photon_number_mean_var()[0]
print('每个节点平均光子数为: ', photon_number)
loss = self.target(photon_number)
loss_history.append(loss.item())
result.clear()
result.append(photon_number.tolist())
return loss
选取DeepQuantum内建SPSA优化器,设定优化器参数,完成优化。
# 生成刚创建的VGBS模型
model = VGBS()
# 定义优化器参数
spsa_hyperparam = {'a': 1, 'c': 0.01, 'A': 200, 'nepoch': 1000, 'alpha': 0.602, 'gamma': 0.101}
optimizer = dq.optimizer.OptimizerSPSA(model.loss, model.params)
optimizer.set_hyperparam(spsa_hyperparam)
param_best = torch.tensor(optimizer.run(100)).float()
每个节点平均光子数为: tensor([0.0797, 0.1151, 0.1557, 2.8828, 2.7667], dtype=torch.float64)
每个节点平均光子数为: tensor([0.0795, 0.1119, 0.1526, 2.8860, 2.7700], dtype=torch.float64)
每个节点平均光子数为: tensor([0.0831, 0.1228, 0.1646, 2.8750, 2.7545], dtype=torch.float64)
每个节点平均光子数为: tensor([0.0768, 0.1132, 0.1527, 2.8848, 2.7726], dtype=torch.float64)
每个节点平均光子数为: tensor([0.1362, 0.2041, 0.2594, 2.7919, 2.6084], dtype=torch.float64)
每个节点平均光子数为: tensor([0.1359, 0.2040, 0.2591, 2.7923, 2.6087], dtype=torch.float64)
每个节点平均光子数为: tensor([0.1474, 0.2213, 0.2716, 2.7745, 2.5852], dtype=torch.float64)
每个节点平均光子数为: tensor([0.1257, 0.1883, 0.2477, 2.8081, 2.6301], dtype=torch.float64)
每个节点平均光子数为: tensor([1.7885, 2.5958, 1.0810, 0.3255, 0.2092], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8478, 2.6258, 1.0307, 0.2985, 0.1972], dtype=torch.float64)
每个节点平均光子数为: tensor([2.3449, 2.8291, 0.5930, 0.1277, 0.1053], dtype=torch.float64)
每个节点平均光子数为: tensor([2.3449, 2.8291, 0.5930, 0.1277, 0.1053], dtype=torch.float64)
每个节点平均光子数为: tensor([2.3581, 2.8285, 0.5791, 0.1284, 0.1060], dtype=torch.float64)
每个节点平均光子数为: tensor([2.3315, 2.8297, 0.6072, 0.1271, 0.1046], dtype=torch.float64)
每个节点平均光子数为: tensor([2.3056, 2.8249, 0.6319, 0.1305, 0.1071], dtype=torch.float64)
每个节点平均光子数为: tensor([2.3404, 2.8351, 0.6004, 0.1229, 0.1012], dtype=torch.float64)
每个节点平均光子数为: tensor([2.4593, 2.8724, 0.4938, 0.0952, 0.0793], dtype=torch.float64)
每个节点平均光子数为: tensor([2.4531, 2.8637, 0.4964, 0.1020, 0.0849], dtype=torch.float64)
每个节点平均光子数为: tensor([2.4753, 2.8964, 0.4852, 0.0779, 0.0652], dtype=torch.float64)
每个节点平均光子数为: tensor([2.4788, 2.8991, 0.4876, 0.0736, 0.0609], dtype=torch.float64)
每个节点平均光子数为: tensor([2.4872, 2.9052, 0.4936, 0.0633, 0.0507], dtype=torch.float64)
每个节点平均光子数为: tensor([2.4843, 2.9018, 0.4930, 0.0668, 0.0542], dtype=torch.float64)
每个节点平均光子数为: tensor([2.4920, 2.9116, 0.4934, 0.0578, 0.0453], dtype=torch.float64)
每个节点平均光子数为: tensor([2.4918, 2.9097, 0.4955, 0.0577, 0.0452], dtype=torch.float64)
每个节点平均光子数为: tensor([2.4919, 2.9106, 0.4945, 0.0578, 0.0452], dtype=torch.float64)
每个节点平均光子数为: tensor([2.4919, 2.9106, 0.4945, 0.0578, 0.0452], dtype=torch.float64)
每个节点平均光子数为: tensor([2.4918, 2.9097, 0.4955, 0.0577, 0.0452], dtype=torch.float64)
每个节点平均光子数为: tensor([2.4920, 2.9115, 0.4935, 0.0578, 0.0453], dtype=torch.float64)
每个节点平均光子数为: tensor([2.4788, 2.9088, 0.5064, 0.0594, 0.0465], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5047, 2.9123, 0.4829, 0.0561, 0.0440], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5418, 2.9182, 0.4503, 0.0503, 0.0394], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5395, 2.9157, 0.4499, 0.0529, 0.0419], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5443, 2.9203, 0.4518, 0.0473, 0.0364], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5444, 2.9221, 0.4497, 0.0473, 0.0364], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5439, 2.9199, 0.4522, 0.0476, 0.0364], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5448, 2.9224, 0.4494, 0.0470, 0.0364], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5459, 2.9231, 0.4500, 0.0457, 0.0353], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5432, 2.9203, 0.4504, 0.0486, 0.0375], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5511, 2.9289, 0.4495, 0.0399, 0.0306], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5470, 2.9244, 0.4495, 0.0445, 0.0346], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5484, 2.9365, 0.4609, 0.0313, 0.0230], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5706, 2.9401, 0.4379, 0.0296, 0.0219], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5813, 2.9408, 0.4276, 0.0290, 0.0213], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5820, 2.9429, 0.4253, 0.0285, 0.0213], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5922, 2.9438, 0.4153, 0.0279, 0.0208], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5711, 2.9405, 0.4371, 0.0295, 0.0219], dtype=torch.float64)
每个节点平均光子数为: tensor([2.5917, 2.9445, 0.4150, 0.0280, 0.0208], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6117, 2.9462, 0.3959, 0.0265, 0.0198], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6289, 2.9469, 0.3789, 0.0259, 0.0194], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6112, 2.9468, 0.3969, 0.0258, 0.0193], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6185, 2.9461, 0.3902, 0.0258, 0.0193], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6187, 2.9476, 0.3885, 0.0258, 0.0193], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6274, 2.9469, 0.3805, 0.0259, 0.0194], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6097, 2.9468, 0.3985, 0.0258, 0.0192], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6082, 2.9468, 0.4000, 0.0258, 0.0192], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6258, 2.9469, 0.3821, 0.0259, 0.0194], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6252, 2.9485, 0.3825, 0.0249, 0.0188], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6056, 2.9451, 0.4028, 0.0267, 0.0198], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6357, 2.9501, 0.3729, 0.0235, 0.0178], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6349, 2.9504, 0.3712, 0.0246, 0.0188], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6274, 2.9499, 0.3821, 0.0232, 0.0174], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6442, 2.9500, 0.3650, 0.0232, 0.0175], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6351, 2.9504, 0.3748, 0.0227, 0.0170], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6342, 2.9494, 0.3747, 0.0237, 0.0180], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6442, 2.9513, 0.3663, 0.0219, 0.0163], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6262, 2.9500, 0.3836, 0.0231, 0.0171], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6401, 2.9501, 0.3710, 0.0223, 0.0165], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6579, 2.9532, 0.3524, 0.0208, 0.0157], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6552, 2.9524, 0.3547, 0.0215, 0.0162], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6731, 2.9561, 0.3370, 0.0192, 0.0146], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6894, 2.9591, 0.3203, 0.0177, 0.0135], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6904, 2.9600, 0.3201, 0.0168, 0.0127], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6982, 2.9613, 0.3120, 0.0162, 0.0123], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6826, 2.9590, 0.3283, 0.0171, 0.0129], dtype=torch.float64)
每个节点平均光子数为: tensor([2.6917, 2.9603, 0.3188, 0.0166, 0.0126], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7070, 2.9627, 0.3027, 0.0156, 0.0120], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7022, 2.9623, 0.3081, 0.0155, 0.0118], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7163, 2.9638, 0.2927, 0.0153, 0.0119], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7023, 2.9619, 0.3077, 0.0159, 0.0122], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7171, 2.9642, 0.2922, 0.0149, 0.0116], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7189, 2.9645, 0.2903, 0.0148, 0.0115], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7189, 2.9645, 0.2903, 0.0148, 0.0115], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7191, 2.9643, 0.2910, 0.0145, 0.0112], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7187, 2.9647, 0.2896, 0.0151, 0.0118], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7120, 2.9632, 0.2984, 0.0149, 0.0115], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7261, 2.9653, 0.2837, 0.0141, 0.0109], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7194, 2.9649, 0.2901, 0.0145, 0.0112], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7330, 2.9657, 0.2769, 0.0137, 0.0106], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7331, 2.9657, 0.2769, 0.0137, 0.0106], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7331, 2.9657, 0.2769, 0.0137, 0.0106], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7393, 2.9659, 0.2705, 0.0136, 0.0106], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7267, 2.9656, 0.2834, 0.0138, 0.0106], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7397, 2.9658, 0.2702, 0.0137, 0.0106], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7272, 2.9657, 0.2828, 0.0137, 0.0106], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7267, 2.9651, 0.2839, 0.0138, 0.0106], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7394, 2.9664, 0.2699, 0.0136, 0.0106], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7335, 2.9658, 0.2764, 0.0137, 0.0106], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7335, 2.9658, 0.2764, 0.0137, 0.0106], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7393, 2.9655, 0.2702, 0.0140, 0.0109], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7275, 2.9660, 0.2828, 0.0134, 0.0103], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7346, 2.9673, 0.2756, 0.0127, 0.0098], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7204, 2.9647, 0.2899, 0.0141, 0.0109], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7415, 2.9688, 0.2689, 0.0118, 0.0091], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7410, 2.9683, 0.2688, 0.0123, 0.0096], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7419, 2.9693, 0.2688, 0.0113, 0.0086], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7409, 2.9681, 0.2689, 0.0125, 0.0096], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7362, 2.9696, 0.2750, 0.0109, 0.0083], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7482, 2.9697, 0.2628, 0.0110, 0.0083], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7422, 2.9698, 0.2691, 0.0107, 0.0081], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7418, 2.9694, 0.2691, 0.0112, 0.0085], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7357, 2.9689, 0.2760, 0.0111, 0.0084], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7485, 2.9707, 0.2624, 0.0104, 0.0080], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7482, 2.9711, 0.2632, 0.0100, 0.0076], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7472, 2.9701, 0.2633, 0.0110, 0.0084], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7482, 2.9711, 0.2632, 0.0100, 0.0076], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7485, 2.9715, 0.2632, 0.0096, 0.0072], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7482, 2.9706, 0.2638, 0.0099, 0.0074], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7488, 2.9721, 0.2626, 0.0094, 0.0071], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7487, 2.9719, 0.2628, 0.0095, 0.0071], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7487, 2.9719, 0.2628, 0.0095, 0.0071], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7547, 2.9722, 0.2569, 0.0092, 0.0069], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7426, 2.9716, 0.2688, 0.0097, 0.0073], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7529, 2.9723, 0.2588, 0.0091, 0.0068], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7526, 2.9720, 0.2588, 0.0095, 0.0072], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7528, 2.9718, 0.2594, 0.0092, 0.0069], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7529, 2.9727, 0.2583, 0.0092, 0.0069], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7470, 2.9721, 0.2647, 0.0093, 0.0069], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7586, 2.9724, 0.2530, 0.0092, 0.0069], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7531, 2.9717, 0.2591, 0.0093, 0.0069], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7533, 2.9728, 0.2579, 0.0091, 0.0069], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7531, 2.9726, 0.2579, 0.0094, 0.0071], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7533, 2.9720, 0.2590, 0.0090, 0.0067], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7530, 2.9719, 0.2588, 0.0093, 0.0070], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7535, 2.9724, 0.2587, 0.0089, 0.0066], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7590, 2.9723, 0.2530, 0.0089, 0.0067], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7477, 2.9722, 0.2645, 0.0089, 0.0066], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7472, 2.9715, 0.2653, 0.0092, 0.0068], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7591, 2.9730, 0.2527, 0.0087, 0.0065], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7623, 2.9726, 0.2494, 0.0090, 0.0067], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7514, 2.9729, 0.2607, 0.0086, 0.0064], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7537, 2.9728, 0.2584, 0.0087, 0.0064], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7537, 2.9728, 0.2584, 0.0087, 0.0064], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7535, 2.9723, 0.2590, 0.0087, 0.0064], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7538, 2.9734, 0.2578, 0.0086, 0.0065], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7537, 2.9729, 0.2583, 0.0087, 0.0064], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7537, 2.9729, 0.2583, 0.0087, 0.0064], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7595, 2.9736, 0.2521, 0.0085, 0.0063], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7477, 2.9721, 0.2647, 0.0089, 0.0066], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7573, 2.9738, 0.2540, 0.0085, 0.0064], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7571, 2.9728, 0.2552, 0.0086, 0.0064], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7514, 2.9731, 0.2602, 0.0088, 0.0065], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7629, 2.9736, 0.2489, 0.0083, 0.0062], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7548, 2.9727, 0.2574, 0.0087, 0.0064], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7663, 2.9743, 0.2451, 0.0082, 0.0061], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7698, 2.9741, 0.2417, 0.0082, 0.0062], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7591, 2.9740, 0.2525, 0.0082, 0.0062], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7641, 2.9738, 0.2473, 0.0085, 0.0063], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7645, 2.9743, 0.2472, 0.0080, 0.0060], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7590, 2.9741, 0.2527, 0.0081, 0.0061], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7698, 2.9742, 0.2418, 0.0081, 0.0061], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7642, 2.9737, 0.2479, 0.0081, 0.0061], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7643, 2.9746, 0.2469, 0.0081, 0.0061], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7589, 2.9741, 0.2528, 0.0081, 0.0061], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7696, 2.9742, 0.2420, 0.0081, 0.0061], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7585, 2.9739, 0.2530, 0.0083, 0.0062], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7696, 2.9744, 0.2421, 0.0079, 0.0059], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7671, 2.9738, 0.2450, 0.0080, 0.0060], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7673, 2.9748, 0.2439, 0.0079, 0.0060], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7616, 2.9736, 0.2504, 0.0082, 0.0061], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7728, 2.9751, 0.2386, 0.0077, 0.0058], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7710, 2.9755, 0.2401, 0.0076, 0.0058], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7705, 2.9742, 0.2412, 0.0080, 0.0061], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7707, 2.9750, 0.2404, 0.0079, 0.0060], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7711, 2.9754, 0.2403, 0.0075, 0.0057], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7656, 2.9751, 0.2457, 0.0078, 0.0059], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7763, 2.9755, 0.2351, 0.0074, 0.0056], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7688, 2.9755, 0.2428, 0.0074, 0.0055], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7788, 2.9753, 0.2324, 0.0077, 0.0058], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7658, 2.9748, 0.2460, 0.0077, 0.0057], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7767, 2.9762, 0.2344, 0.0072, 0.0055], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7695, 2.9760, 0.2420, 0.0072, 0.0054], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7795, 2.9758, 0.2317, 0.0074, 0.0057], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7776, 2.9768, 0.2336, 0.0069, 0.0052], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7665, 2.9751, 0.2451, 0.0076, 0.0057], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7778, 2.9772, 0.2330, 0.0069, 0.0052], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7777, 2.9764, 0.2339, 0.0069, 0.0052], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7777, 2.9768, 0.2335, 0.0069, 0.0052], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7777, 2.9768, 0.2335, 0.0069, 0.0052], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7725, 2.9766, 0.2386, 0.0070, 0.0053], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7829, 2.9770, 0.2284, 0.0067, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7801, 2.9765, 0.2315, 0.0068, 0.0051], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7802, 2.9773, 0.2306, 0.0068, 0.0051], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7801, 2.9767, 0.2310, 0.0069, 0.0052], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7803, 2.9770, 0.2311, 0.0067, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7802, 2.9772, 0.2306, 0.0069, 0.0052], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7803, 2.9766, 0.2315, 0.0066, 0.0049], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7751, 2.9762, 0.2368, 0.0068, 0.0051], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7854, 2.9774, 0.2258, 0.0065, 0.0049], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7827, 2.9772, 0.2288, 0.0065, 0.0048], dtype=torch.float64)
每个节点平均光子数为: tensor([2.7825, 2.9770, 0.2287, 0.0067, 0.0051], dtype=torch.float64)
由优化结果可见,前三个“糖果”节点平均光子数大于“棒子”节点平均光子数,优化成功!
可视化结果#
调用matplotlib库,绘制优化过程中损失函数随迭代次数下降曲线。
可见在该问题上,虽然使用的是非梯度算法,DeepQuantum自带的OptimizerSPSA优化器收敛非常迅速。
plt.figure(figsize=(10, 6))
plt.plot(loss_history)
plt.xlabel('Epoch')
plt.ylabel('Loss')
plt.title('Loss over time')
Text(0.5, 1.0, 'Loss over time')
绘制棒棒糖图查看变分优化结果。 其中,每个节点的大小代表平均光子数的多少。 明显可见位于“糖果”处的平均光子数远高于“棒子”,实现了本案例训练的目标。
result_scaled = [x * 800 for x in result[0]]
nx.draw(graph, node_size=result_scaled, with_labels=True)
针对损失函数的进一步改进#
我们可以观察到,在上个模块中,虽然“糖果”节点处[0,1,2]的光子数远高于其它节点,但当前的简单线性损失函数无法很好控制[0,1,2]节点的相对光子数。
不失一般性,我们如果额外要求[0,1,2]节点的光子数相等,该如何处理?
其实,这项任务本质可以被认为是:训练一个变分高斯采样线路,使其输出的概率分布与目标概率分布相一致。对于概率分布的训练可以通过最小化Kullback-Leibler(KL)散度来执行,这在去掉常数项后可以写成:
在这种情况下,\( S \) 是概率分布中一个元素,\( P(S) \) 是从GBS分布中抽样时观察到该元素的概率,而 \( T \) 是元素的总数。
据此,我们可以写出新的损失函数target_kl:
def target_kl(s):
return -sum(torch.log(s[subset] / 2))
更新损失函数,再次开始优化:
class VGBS(nn.Module):
def __init__(self):
super().__init__()
self.params = nn.Parameter(torch.randn(nr_modes, dtype=torch.float64), requires_grad=False)
loss_history.clear()
# 采用KL散度定义的损失函数
def target_kl(self, s):
return -sum(torch.log(s[subset] / 2))
def loss(self, x):
if not isinstance(x, torch.Tensor):
x = torch.tensor(x).to(self.params.dtype).reshape(-1)
weights = torch.exp(-x)
w = torch.diag(weights)
waw = w @ torch.tensor(a) @ w
gbs = dq.photonic.GBS_Graph(adj_mat=waw, cutoff=5, mean_photon_num=6)
gbs()
photon_number = gbs.photon_number_mean_var()[0]
print('每个节点平均光子数为: ', photon_number)
loss = self.target_kl(photon_number)
loss_history.append(loss.item())
result.clear()
result.append(photon_number.tolist())
return loss
model = VGBS()
loss_history = []
# 定义优化器参数
spsa_hyperparam = {'a': 1, 'c': 0.01, 'A': 200, 'nepoch': 1000, 'alpha': 0.602, 'gamma': 0.101}
optimizer = dq.optimizer.OptimizerSPSA(model.loss, model.params)
optimizer.set_hyperparam(spsa_hyperparam)
param_best = torch.tensor(optimizer.run(1000)).float()
result_scaled = [x * 800 for x in result[0]]
nx.draw(graph, node_size=result_scaled, with_labels=True)
每个节点平均光子数为: tensor([1.8368, 0.6379, 2.5418, 0.7347, 0.2488], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8526, 0.6104, 2.5378, 0.7458, 0.2534], dtype=torch.float64)
每个节点平均光子数为: tensor([1.7848, 0.7423, 2.5656, 0.6846, 0.2226], dtype=torch.float64)
每个节点平均光子数为: tensor([1.7688, 0.7349, 2.5487, 0.7055, 0.2421], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8428, 0.7455, 2.6103, 0.6255, 0.1759], dtype=torch.float64)
每个节点平均光子数为: tensor([1.7961, 0.7713, 2.5937, 0.6531, 0.1858], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8297, 0.7758, 2.6078, 0.6175, 0.1693], dtype=torch.float64)
每个节点平均光子数为: tensor([1.7847, 0.7535, 2.5869, 0.6764, 0.1986], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0509, 0.8821, 2.6896, 0.3270, 0.0504], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0685, 0.9028, 2.6729, 0.3063, 0.0495], dtype=torch.float64)
每个节点平均光子数为: tensor([2.1185, 0.9681, 2.6166, 0.2499, 0.0469], dtype=torch.float64)
每个节点平均光子数为: tensor([2.1185, 0.9681, 2.6166, 0.2499, 0.0469], dtype=torch.float64)
每个节点平均光子数为: tensor([2.1309, 0.9545, 2.6155, 0.2518, 0.0473], dtype=torch.float64)
每个节点平均光子数为: tensor([2.1059, 0.9818, 2.6179, 0.2480, 0.0465], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0485, 1.0338, 2.6314, 0.2414, 0.0450], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0536, 1.0480, 2.6156, 0.2383, 0.0445], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0487, 1.0849, 2.5916, 0.2316, 0.0433], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0697, 1.0422, 2.6050, 0.2385, 0.0446], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9594, 1.2492, 2.5377, 0.2129, 0.0409], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9926, 1.2139, 2.5530, 0.2037, 0.0369], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9461, 1.2649, 2.5321, 0.2155, 0.0413], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9440, 1.2635, 2.5299, 0.2185, 0.0441], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9308, 1.2827, 2.5257, 0.2187, 0.0421], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9615, 1.2471, 2.5386, 0.2123, 0.0406], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9093, 1.3077, 2.5167, 0.2232, 0.0431], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9093, 1.3077, 2.5167, 0.2232, 0.0431], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9243, 1.2903, 2.5229, 0.2201, 0.0424], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8942, 1.3250, 2.5104, 0.2264, 0.0439], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8604, 1.3518, 2.5076, 0.2344, 0.0457], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8987, 1.3319, 2.5012, 0.2246, 0.0436], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8998, 1.3326, 2.5022, 0.2231, 0.0422], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8978, 1.3311, 2.5001, 0.2261, 0.0450], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9145, 1.3156, 2.5085, 0.2200, 0.0415], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8854, 1.3496, 2.4962, 0.2261, 0.0429], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8841, 1.3435, 2.4986, 0.2309, 0.0429], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8629, 1.3832, 2.4838, 0.2262, 0.0440], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8341, 1.4487, 2.4605, 0.2123, 0.0444], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8251, 1.4410, 2.4610, 0.2255, 0.0474], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8497, 1.4619, 2.4605, 0.1896, 0.0382], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8399, 1.4536, 2.4591, 0.2040, 0.0434], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8592, 1.4669, 2.4718, 0.1705, 0.0316], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8683, 1.4806, 2.4521, 0.1678, 0.0311], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8846, 1.4700, 2.4469, 0.1680, 0.0305], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8636, 1.5084, 2.4326, 0.1641, 0.0313], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8464, 1.5562, 2.4069, 0.1587, 0.0319], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8362, 1.5424, 2.4276, 0.1615, 0.0323], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8343, 1.5735, 2.3996, 0.1604, 0.0323], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8700, 1.5546, 2.3904, 0.1540, 0.0309], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8886, 1.5404, 2.3853, 0.1546, 0.0311], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8597, 1.5645, 2.3935, 0.1519, 0.0305], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8678, 1.5517, 2.4008, 0.1498, 0.0299], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8428, 1.5845, 2.3887, 0.1532, 0.0308], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8587, 1.5708, 2.3851, 0.1544, 0.0311], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8294, 1.5949, 2.3936, 0.1516, 0.0304], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8131, 1.6084, 2.3984, 0.1500, 0.0300], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8425, 1.5842, 2.3898, 0.1528, 0.0307], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8206, 1.6172, 2.3870, 0.1454, 0.0297], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8053, 1.5998, 2.4098, 0.1548, 0.0303], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8534, 1.6251, 2.3622, 0.1315, 0.0278], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8286, 1.6560, 2.3490, 0.1361, 0.0303], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8272, 1.6511, 2.3607, 0.1324, 0.0286], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8565, 1.6279, 2.3515, 0.1348, 0.0293], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8308, 1.6492, 2.3604, 0.1317, 0.0279], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8296, 1.6482, 2.3591, 0.1335, 0.0295], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8478, 1.6399, 2.3553, 0.1295, 0.0276], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8133, 1.6583, 2.3652, 0.1346, 0.0287], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8462, 1.6282, 2.3653, 0.1327, 0.0277], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8610, 1.6454, 2.3417, 0.1247, 0.0272], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8697, 1.6558, 2.3261, 0.1207, 0.0276], dtype=torch.float64)
每个节点平均光子数为: tensor([1.8855, 1.6741, 2.3028, 0.1119, 0.0256], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9038, 1.6959, 2.2721, 0.1043, 0.0240], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9078, 1.6996, 2.2714, 0.0986, 0.0226], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9147, 1.7079, 2.2593, 0.0961, 0.0220], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9031, 1.6934, 2.2830, 0.0980, 0.0224], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9108, 1.7035, 2.2651, 0.0986, 0.0221], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9254, 1.7209, 2.2394, 0.0925, 0.0217], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9308, 1.7269, 2.2327, 0.0886, 0.0210], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9420, 1.7411, 2.2070, 0.0880, 0.0219], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9343, 1.7319, 2.2210, 0.0908, 0.0221], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9490, 1.7495, 2.1945, 0.0853, 0.0216], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9582, 1.7604, 2.1779, 0.0821, 0.0214], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9582, 1.7604, 2.1779, 0.0821, 0.0214], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9680, 1.7454, 2.1854, 0.0807, 0.0206], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9485, 1.7753, 2.1705, 0.0835, 0.0222], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9512, 1.7541, 2.1899, 0.0831, 0.0216], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9635, 1.7695, 2.1644, 0.0813, 0.0213], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9499, 1.7792, 2.1666, 0.0827, 0.0217], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9806, 1.7642, 2.1549, 0.0794, 0.0208], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9760, 1.7665, 2.1567, 0.0799, 0.0209], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9760, 1.7665, 2.1567, 0.0799, 0.0209], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9907, 1.7587, 2.1505, 0.0789, 0.0211], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9612, 1.7743, 2.1629, 0.0809, 0.0208], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9919, 1.7563, 2.1502, 0.0804, 0.0212], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9649, 1.7741, 2.1611, 0.0791, 0.0208], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9650, 1.7629, 2.1719, 0.0797, 0.0205], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9766, 1.7776, 2.1455, 0.0791, 0.0213], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9751, 1.7757, 2.1489, 0.0792, 0.0212], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9751, 1.7757, 2.1489, 0.0792, 0.0212], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9881, 1.7666, 2.1430, 0.0804, 0.0220], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9619, 1.7848, 2.1548, 0.0780, 0.0204], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9695, 1.7940, 2.1418, 0.0751, 0.0197], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9540, 1.7759, 2.1679, 0.0810, 0.0212], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9804, 1.8066, 2.1241, 0.0707, 0.0182], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9796, 1.8059, 2.1234, 0.0718, 0.0192], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9819, 1.8080, 2.1240, 0.0686, 0.0175], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9784, 1.8047, 2.1238, 0.0735, 0.0195], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9691, 1.8172, 2.1297, 0.0670, 0.0169], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9961, 1.8004, 2.1183, 0.0680, 0.0172], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9771, 1.8127, 2.1268, 0.0669, 0.0165], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9764, 1.8121, 2.1262, 0.0678, 0.0174], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9696, 1.8040, 2.1402, 0.0693, 0.0170], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9842, 1.8211, 2.1130, 0.0651, 0.0167], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9902, 1.8278, 2.1045, 0.0617, 0.0157], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9871, 1.8249, 2.1045, 0.0661, 0.0175], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9904, 1.8280, 2.1043, 0.0615, 0.0158], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9910, 1.8285, 2.1048, 0.0607, 0.0150], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9978, 1.8125, 2.1120, 0.0621, 0.0155], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9838, 1.8441, 2.0973, 0.0598, 0.0150], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9817, 1.8487, 2.0951, 0.0595, 0.0149], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9817, 1.8487, 2.0951, 0.0595, 0.0149], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9963, 1.8418, 2.0890, 0.0583, 0.0147], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9671, 1.8557, 2.1014, 0.0606, 0.0152], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9896, 1.8454, 2.0922, 0.0585, 0.0144], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9890, 1.8448, 2.0917, 0.0593, 0.0152], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9974, 1.8307, 2.0991, 0.0583, 0.0145], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9814, 1.8596, 2.0850, 0.0592, 0.0148], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9723, 1.8574, 2.0961, 0.0597, 0.0146], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0007, 1.8431, 2.0832, 0.0582, 0.0148], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9961, 1.8337, 2.0961, 0.0595, 0.0146], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9819, 1.8642, 2.0809, 0.0581, 0.0149], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9749, 1.8758, 2.0749, 0.0591, 0.0154], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9912, 1.8477, 2.0894, 0.0574, 0.0143], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9824, 1.8598, 2.0828, 0.0597, 0.0152], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9846, 1.8620, 2.0823, 0.0566, 0.0144], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9977, 1.8540, 2.0764, 0.0573, 0.0146], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9711, 1.8697, 2.0884, 0.0565, 0.0144], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9738, 1.8569, 2.0973, 0.0574, 0.0146], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9868, 1.8718, 2.0710, 0.0561, 0.0143], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9982, 1.8621, 2.0678, 0.0571, 0.0149], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9722, 1.8781, 2.0803, 0.0555, 0.0139], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9772, 1.8750, 2.0779, 0.0558, 0.0140], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9772, 1.8750, 2.0779, 0.0558, 0.0140], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9842, 1.8601, 2.0853, 0.0564, 0.0139], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9702, 1.8899, 2.0706, 0.0551, 0.0142], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9723, 1.8854, 2.0728, 0.0553, 0.0141], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9723, 1.8854, 2.0728, 0.0553, 0.0141], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9790, 1.8928, 2.0596, 0.0547, 0.0140], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9658, 1.8781, 2.0859, 0.0560, 0.0142], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9702, 1.9053, 2.0561, 0.0542, 0.0142], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9839, 1.8759, 2.0708, 0.0555, 0.0139], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9585, 1.9063, 2.0653, 0.0555, 0.0144], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9871, 1.8932, 2.0524, 0.0534, 0.0139], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9731, 1.8881, 2.0691, 0.0556, 0.0141], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9880, 1.9043, 2.0415, 0.0523, 0.0138], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0018, 1.8977, 2.0341, 0.0525, 0.0140], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9755, 1.9124, 2.0465, 0.0518, 0.0137], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9842, 1.9060, 2.0422, 0.0534, 0.0142], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9862, 1.9080, 2.0417, 0.0507, 0.0134], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9727, 1.9151, 2.0480, 0.0507, 0.0134], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9990, 1.9004, 2.0356, 0.0514, 0.0137], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9901, 1.8957, 2.0502, 0.0506, 0.0134], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9753, 1.9232, 2.0365, 0.0514, 0.0136], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9688, 1.9182, 2.0490, 0.0507, 0.0134], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9951, 1.9035, 2.0365, 0.0514, 0.0136], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9648, 1.9190, 2.0506, 0.0519, 0.0137], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9930, 1.9061, 2.0377, 0.0500, 0.0133], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9925, 1.8949, 2.0483, 0.0510, 0.0133], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9792, 1.9237, 2.0337, 0.0499, 0.0135], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9750, 1.9087, 2.0509, 0.0517, 0.0136], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9899, 1.9247, 2.0234, 0.0487, 0.0133], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9833, 1.9387, 2.0171, 0.0478, 0.0131], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9958, 1.9097, 2.0313, 0.0497, 0.0135], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9841, 1.9337, 2.0193, 0.0494, 0.0135], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9859, 1.9355, 2.0189, 0.0469, 0.0128], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9716, 1.9414, 2.0256, 0.0482, 0.0132], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9995, 1.9290, 2.0124, 0.0464, 0.0127], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9789, 1.9398, 2.0227, 0.0462, 0.0124], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0045, 1.9252, 2.0095, 0.0476, 0.0133], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9778, 1.9283, 2.0332, 0.0480, 0.0127], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9928, 1.9441, 2.0055, 0.0452, 0.0125], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9785, 1.9498, 2.0149, 0.0448, 0.0121], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0040, 1.9354, 2.0016, 0.0461, 0.0129], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9928, 1.9541, 1.9977, 0.0435, 0.0119], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9773, 1.9380, 2.0250, 0.0468, 0.0127], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9860, 1.9675, 1.9908, 0.0437, 0.0120], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9998, 1.9409, 2.0044, 0.0431, 0.0118], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9933, 1.9535, 1.9979, 0.0434, 0.0119], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9933, 1.9535, 1.9979, 0.0434, 0.0119], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9794, 1.9596, 2.0047, 0.0443, 0.0121], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0070, 1.9475, 1.9913, 0.0426, 0.0117], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0053, 1.9379, 2.0023, 0.0428, 0.0117], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9916, 1.9645, 1.9886, 0.0434, 0.0119], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9985, 1.9505, 1.9955, 0.0434, 0.0121], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9989, 1.9509, 1.9959, 0.0428, 0.0115], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9917, 1.9638, 1.9887, 0.0436, 0.0121], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0058, 1.9377, 2.0028, 0.0424, 0.0113], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9940, 1.9399, 2.0111, 0.0434, 0.0117], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0076, 1.9544, 1.9842, 0.0424, 0.0115], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0031, 1.9496, 1.9936, 0.0424, 0.0113], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0027, 1.9492, 1.9932, 0.0430, 0.0119], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0098, 1.9568, 1.9799, 0.0421, 0.0114], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9962, 1.9422, 2.0068, 0.0431, 0.0116], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0125, 1.9596, 1.9754, 0.0412, 0.0113], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9976, 1.9438, 2.0032, 0.0438, 0.0116], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0170, 1.9644, 1.9668, 0.0405, 0.0113], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0022, 1.9486, 1.9947, 0.0430, 0.0115], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0136, 1.9607, 1.9728, 0.0413, 0.0116], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0140, 1.9611, 1.9732, 0.0407, 0.0110], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0070, 1.9537, 1.9866, 0.0414, 0.0114], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0207, 1.9683, 1.9594, 0.0404, 0.0112], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0019, 1.9685, 1.9771, 0.0413, 0.0112], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0284, 1.9565, 1.9634, 0.0404, 0.0113], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0224, 1.9493, 1.9772, 0.0403, 0.0109], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0089, 1.9751, 1.9630, 0.0414, 0.0116], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0251, 1.9662, 1.9582, 0.0394, 0.0110], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0103, 1.9504, 1.9861, 0.0419, 0.0112], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0282, 1.9493, 1.9723, 0.0395, 0.0107], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0148, 1.9751, 1.9581, 0.0406, 0.0115], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0292, 1.9445, 1.9745, 0.0406, 0.0112], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0177, 1.9722, 1.9602, 0.0391, 0.0108], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0274, 1.9521, 1.9711, 0.0390, 0.0105], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0141, 1.9778, 1.9568, 0.0401, 0.0112], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0163, 1.9741, 1.9592, 0.0396, 0.0109], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0293, 1.9479, 1.9731, 0.0391, 0.0107], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0174, 1.9740, 1.9594, 0.0386, 0.0106], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0289, 1.9465, 1.9737, 0.0401, 0.0109], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0270, 1.9536, 1.9701, 0.0387, 0.0106], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0141, 1.9796, 1.9563, 0.0393, 0.0108], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0219, 1.9665, 1.9637, 0.0378, 0.0101], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0201, 1.9647, 1.9638, 0.0402, 0.0112], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0209, 1.9655, 1.9639, 0.0390, 0.0105], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0224, 1.9669, 1.9635, 0.0371, 0.0100], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0156, 1.9795, 1.9568, 0.0379, 0.0102], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0285, 1.9536, 1.9706, 0.0374, 0.0101], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0354, 1.9598, 1.9574, 0.0371, 0.0102], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0094, 1.9716, 1.9709, 0.0380, 0.0101], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0160, 1.9786, 1.9573, 0.0378, 0.0102], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0289, 1.9527, 1.9711, 0.0373, 0.0101], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0237, 1.9657, 1.9646, 0.0364, 0.0096], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0220, 1.9640, 1.9646, 0.0388, 0.0107], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0102, 1.9712, 1.9712, 0.0374, 0.0100], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0366, 1.9597, 1.9580, 0.0361, 0.0096], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0193, 1.9571, 1.9767, 0.0371, 0.0098], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0328, 1.9716, 1.9498, 0.0362, 0.0097], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0212, 1.9788, 1.9545, 0.0359, 0.0096], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0326, 1.9516, 1.9687, 0.0372, 0.0099], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0239, 1.9702, 1.9588, 0.0372, 0.0099], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0252, 1.9715, 1.9585, 0.0354, 0.0094], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0249, 1.9711, 1.9586, 0.0359, 0.0096], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0249, 1.9711, 1.9586, 0.0359, 0.0096], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0247, 1.9710, 1.9584, 0.0361, 0.0098], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0250, 1.9713, 1.9587, 0.0356, 0.0093], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0182, 1.9640, 1.9720, 0.0362, 0.0096], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0317, 1.9784, 1.9451, 0.0354, 0.0094], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0313, 1.9583, 1.9643, 0.0364, 0.0097], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0200, 1.9853, 1.9502, 0.0351, 0.0094], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0228, 1.9763, 1.9548, 0.0364, 0.0097], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0241, 1.9776, 1.9544, 0.0347, 0.0092], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0172, 1.9703, 1.9681, 0.0353, 0.0092], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0304, 1.9843, 1.9408, 0.0350, 0.0095], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0354, 1.9702, 1.9496, 0.0354, 0.0094], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0106, 1.9828, 1.9625, 0.0349, 0.0093], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0254, 1.9647, 1.9647, 0.0357, 0.0095], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0141, 1.9915, 1.9508, 0.0345, 0.0092], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0114, 1.9953, 1.9485, 0.0353, 0.0096], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0242, 1.9701, 1.9623, 0.0344, 0.0090], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0260, 1.9661, 1.9643, 0.0345, 0.0091], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0135, 1.9916, 1.9507, 0.0350, 0.0092], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0074, 1.9834, 1.9649, 0.0351, 0.0091], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0332, 1.9718, 1.9514, 0.0343, 0.0092], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0141, 1.9903, 1.9514, 0.0349, 0.0092], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0267, 1.9648, 1.9650, 0.0345, 0.0091], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0136, 1.9686, 1.9723, 0.0360, 0.0095], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0284, 1.9841, 1.9452, 0.0335, 0.0088], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0175, 1.9727, 1.9652, 0.0353, 0.0093], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0323, 1.9882, 1.9380, 0.0328, 0.0087], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0359, 1.9920, 1.9314, 0.0322, 0.0085], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0211, 1.9765, 1.9586, 0.0347, 0.0091], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0390, 1.9953, 1.9251, 0.0319, 0.0086], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0245, 1.9801, 1.9527, 0.0339, 0.0088], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0401, 1.9965, 1.9221, 0.0325, 0.0088], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0268, 1.9824, 1.9494, 0.0329, 0.0086], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0448, 1.9824, 1.9317, 0.0323, 0.0087], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0193, 1.9937, 1.9453, 0.0331, 0.0086], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0252, 2.0008, 1.9319, 0.0332, 0.0089], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0377, 1.9758, 1.9458, 0.0323, 0.0084], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0333, 1.9845, 1.9410, 0.0326, 0.0086], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0333, 1.9845, 1.9410, 0.0326, 0.0086], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0339, 1.9851, 1.9408, 0.0318, 0.0084], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0327, 1.9839, 1.9412, 0.0334, 0.0088], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0330, 1.9841, 1.9411, 0.0331, 0.0087], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0342, 1.9853, 1.9407, 0.0315, 0.0083], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0399, 1.9723, 1.9477, 0.0318, 0.0083], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0278, 1.9976, 1.9340, 0.0322, 0.0085], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0406, 1.9708, 1.9485, 0.0317, 0.0083], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0285, 1.9961, 1.9348, 0.0321, 0.0085], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0350, 1.9820, 1.9422, 0.0321, 0.0086], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0353, 1.9823, 1.9425, 0.0317, 0.0082], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0352, 1.9822, 1.9424, 0.0319, 0.0084], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0352, 1.9822, 1.9424, 0.0319, 0.0084], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0423, 1.9898, 1.9287, 0.0310, 0.0083], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0281, 1.9746, 1.9560, 0.0329, 0.0084], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0303, 1.9769, 1.9527, 0.0318, 0.0082], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0434, 1.9909, 1.9257, 0.0315, 0.0085], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0357, 1.9827, 1.9417, 0.0317, 0.0083], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0357, 1.9827, 1.9417, 0.0317, 0.0083], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0355, 1.9825, 1.9415, 0.0319, 0.0085], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0358, 1.9828, 1.9418, 0.0315, 0.0081], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0351, 1.9821, 1.9419, 0.0324, 0.0085], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0362, 1.9832, 1.9415, 0.0309, 0.0081], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0486, 1.9774, 1.9351, 0.0308, 0.0081], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0231, 1.9884, 1.9482, 0.0319, 0.0083], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0377, 1.9829, 1.9408, 0.0306, 0.0080], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0366, 1.9818, 1.9412, 0.0321, 0.0084], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0252, 1.9886, 1.9473, 0.0308, 0.0080], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0494, 1.9766, 1.9346, 0.0312, 0.0082], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0333, 1.9838, 1.9429, 0.0317, 0.0083], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0344, 1.9849, 1.9426, 0.0302, 0.0079], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0274, 1.9775, 1.9559, 0.0311, 0.0081], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0407, 1.9916, 1.9294, 0.0303, 0.0079], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0407, 1.9916, 1.9295, 0.0303, 0.0079], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0274, 1.9775, 1.9560, 0.0311, 0.0081], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0460, 1.9784, 1.9366, 0.0309, 0.0081], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0218, 1.9905, 1.9492, 0.0305, 0.0080], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0427, 1.9801, 1.9383, 0.0308, 0.0081], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0184, 1.9922, 1.9510, 0.0305, 0.0079], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0335, 1.9752, 1.9530, 0.0304, 0.0079], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0214, 2.0001, 1.9396, 0.0308, 0.0080], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0215, 1.9793, 1.9602, 0.0309, 0.0080], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0348, 1.9933, 1.9338, 0.0302, 0.0079], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0276, 1.9858, 1.9471, 0.0313, 0.0082], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0287, 1.9869, 1.9468, 0.0298, 0.0078], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0410, 1.9811, 1.9404, 0.0298, 0.0078], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0157, 1.9921, 1.9534, 0.0308, 0.0080], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0418, 1.9798, 1.9397, 0.0306, 0.0081], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0178, 1.9921, 1.9526, 0.0299, 0.0076], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0242, 1.9878, 1.9488, 0.0310, 0.0082], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0256, 1.9891, 1.9487, 0.0292, 0.0074], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0132, 1.9950, 1.9552, 0.0293, 0.0074], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0372, 1.9826, 1.9423, 0.0300, 0.0078], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0268, 1.9788, 1.9580, 0.0291, 0.0073], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0145, 2.0034, 1.9445, 0.0298, 0.0077], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0224, 1.9880, 1.9531, 0.0292, 0.0073], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0221, 1.9878, 1.9529, 0.0296, 0.0076], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0223, 1.9879, 1.9530, 0.0294, 0.0074], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0223, 1.9879, 1.9530, 0.0294, 0.0074], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0228, 1.9885, 1.9529, 0.0287, 0.0072], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0217, 1.9874, 1.9532, 0.0301, 0.0076], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0104, 1.9943, 1.9594, 0.0288, 0.0071], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0344, 1.9820, 1.9466, 0.0295, 0.0076], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0236, 1.9774, 1.9621, 0.0295, 0.0074], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0125, 2.0032, 1.9486, 0.0285, 0.0072], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0101, 1.9866, 1.9667, 0.0292, 0.0073], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0234, 2.0003, 1.9406, 0.0285, 0.0072], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0112, 2.0063, 1.9467, 0.0285, 0.0073], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0226, 1.9808, 1.9603, 0.0292, 0.0072], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0169, 1.9951, 1.9527, 0.0281, 0.0071], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0159, 1.9941, 1.9530, 0.0295, 0.0074], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0096, 1.9876, 1.9661, 0.0294, 0.0072], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0236, 2.0020, 1.9395, 0.0278, 0.0071], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0059, 2.0024, 1.9563, 0.0282, 0.0071], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0302, 1.9904, 1.9436, 0.0286, 0.0072], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0156, 1.9976, 1.9512, 0.0284, 0.0072], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0156, 1.9976, 1.9512, 0.0284, 0.0072], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0091, 1.9910, 1.9643, 0.0285, 0.0070], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0222, 2.0043, 1.9380, 0.0282, 0.0073], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0147, 1.9966, 1.9528, 0.0286, 0.0073], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0149, 1.9968, 1.9530, 0.0282, 0.0070], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0083, 1.9901, 1.9660, 0.0285, 0.0070], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0213, 2.0034, 1.9398, 0.0282, 0.0072], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0018, 2.0020, 1.9609, 0.0282, 0.0071], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0261, 1.9899, 1.9482, 0.0286, 0.0072], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0052, 1.9905, 1.9688, 0.0285, 0.0070], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0183, 2.0037, 1.9426, 0.0282, 0.0072], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9984, 2.0020, 1.9638, 0.0287, 0.0070], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0235, 1.9907, 1.9506, 0.0280, 0.0071], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0239, 1.9907, 1.9506, 0.0279, 0.0070], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9986, 2.0018, 1.9636, 0.0289, 0.0072], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0012, 2.0015, 1.9625, 0.0280, 0.0068], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0252, 1.9892, 1.9496, 0.0286, 0.0073], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0028, 1.9906, 1.9710, 0.0285, 0.0071], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0161, 2.0040, 1.9451, 0.0279, 0.0069], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9971, 2.0032, 1.9643, 0.0285, 0.0069], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0221, 1.9919, 1.9511, 0.0278, 0.0070], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0166, 2.0041, 1.9445, 0.0278, 0.0069], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0034, 1.9907, 1.9703, 0.0285, 0.0071], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0157, 1.9848, 1.9637, 0.0286, 0.0071], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0047, 2.0103, 1.9505, 0.0277, 0.0069], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9969, 2.0062, 1.9621, 0.0279, 0.0069], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0212, 1.9942, 1.9494, 0.0282, 0.0070], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0070, 2.0011, 1.9568, 0.0280, 0.0070], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0070, 2.0011, 1.9568, 0.0280, 0.0070], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0009, 2.0132, 1.9503, 0.0284, 0.0072], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0132, 1.9890, 1.9633, 0.0277, 0.0067], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0148, 1.9856, 1.9650, 0.0278, 0.0069], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0027, 2.0100, 1.9522, 0.0281, 0.0070], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0156, 1.9842, 1.9659, 0.0276, 0.0067], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0034, 2.0084, 1.9529, 0.0282, 0.0071], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9985, 1.9990, 1.9676, 0.0282, 0.0068], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0234, 1.9876, 1.9545, 0.0275, 0.0069], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0119, 1.9937, 1.9608, 0.0270, 0.0065], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0107, 1.9925, 1.9609, 0.0287, 0.0072], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0117, 1.9935, 1.9610, 0.0273, 0.0065], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0115, 1.9933, 1.9608, 0.0276, 0.0069], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0115, 1.9933, 1.9608, 0.0276, 0.0068], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0117, 1.9935, 1.9610, 0.0273, 0.0065], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0178, 1.9813, 1.9674, 0.0271, 0.0065], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0055, 2.0055, 1.9544, 0.0277, 0.0069], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0125, 1.9901, 1.9626, 0.0280, 0.0068], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0135, 1.9911, 1.9623, 0.0267, 0.0065], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0132, 1.9908, 1.9624, 0.0271, 0.0066], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0132, 1.9908, 1.9624, 0.0271, 0.0066], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0256, 1.9852, 1.9560, 0.0267, 0.0065], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0006, 1.9963, 1.9688, 0.0276, 0.0067], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0154, 1.9905, 1.9613, 0.0264, 0.0064], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0144, 1.9895, 1.9616, 0.0277, 0.0067], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0151, 1.9901, 1.9614, 0.0269, 0.0065], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0151, 1.9901, 1.9614, 0.0269, 0.0065], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0152, 1.9902, 1.9615, 0.0267, 0.0063], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0150, 1.9900, 1.9613, 0.0270, 0.0067], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0145, 1.9896, 1.9615, 0.0276, 0.0068], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0156, 1.9907, 1.9614, 0.0261, 0.0062], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0222, 1.9974, 1.9483, 0.0258, 0.0063], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0085, 1.9834, 1.9744, 0.0273, 0.0064], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0232, 1.9985, 1.9456, 0.0262, 0.0064], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0105, 1.9854, 1.9714, 0.0265, 0.0062], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0166, 1.9917, 1.9597, 0.0258, 0.0062], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0157, 1.9908, 1.9600, 0.0270, 0.0065], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0044, 1.9975, 1.9661, 0.0259, 0.0061], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0282, 1.9854, 1.9535, 0.0265, 0.0065], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0185, 1.9807, 1.9683, 0.0264, 0.0062], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0072, 2.0057, 1.9550, 0.0258, 0.0063], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0185, 1.9821, 1.9676, 0.0258, 0.0060], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0063, 2.0062, 1.9547, 0.0264, 0.0064], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0136, 1.9915, 1.9624, 0.0261, 0.0063], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0138, 1.9917, 1.9626, 0.0259, 0.0060], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0255, 1.9856, 1.9563, 0.0263, 0.0064], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0018, 1.9977, 1.9688, 0.0257, 0.0060], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0098, 1.9928, 1.9644, 0.0267, 0.0064], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0109, 1.9939, 1.9642, 0.0252, 0.0058], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0224, 1.9875, 1.9580, 0.0259, 0.0062], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9986, 1.9997, 1.9706, 0.0253, 0.0058], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0019, 2.0077, 1.9595, 0.0251, 0.0059], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0130, 1.9826, 1.9724, 0.0260, 0.0060], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9995, 1.9905, 1.9775, 0.0263, 0.0061], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0133, 2.0045, 1.9519, 0.0246, 0.0058], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0150, 2.0063, 1.9477, 0.0250, 0.0060], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0022, 1.9933, 1.9733, 0.0253, 0.0058], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0076, 1.9988, 1.9619, 0.0258, 0.0060], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0085, 1.9996, 1.9616, 0.0246, 0.0057], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0017, 1.9928, 1.9743, 0.0253, 0.0059], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0147, 2.0059, 1.9489, 0.0247, 0.0058], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0147, 2.0059, 1.9486, 0.0249, 0.0059], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0020, 1.9930, 1.9741, 0.0251, 0.0057], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0017, 2.0108, 1.9561, 0.0253, 0.0060], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0138, 1.9869, 1.9689, 0.0247, 0.0056], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9971, 2.0023, 1.9701, 0.0248, 0.0057], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0210, 1.9904, 1.9577, 0.0251, 0.0058], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0013, 2.0091, 1.9584, 0.0252, 0.0060], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0134, 1.9851, 1.9712, 0.0246, 0.0056], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0091, 1.9951, 1.9660, 0.0243, 0.0056], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0082, 1.9942, 1.9663, 0.0255, 0.0059], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0151, 2.0012, 1.9533, 0.0246, 0.0058], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0024, 1.9883, 1.9787, 0.0249, 0.0056], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0144, 1.9823, 1.9733, 0.0244, 0.0055], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0023, 2.0063, 1.9606, 0.0250, 0.0059], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0035, 2.0039, 1.9618, 0.0249, 0.0058], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0156, 1.9799, 1.9746, 0.0244, 0.0055], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0167, 1.9776, 1.9757, 0.0245, 0.0056], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0047, 2.0018, 1.9631, 0.0248, 0.0057], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0106, 1.9883, 1.9699, 0.0253, 0.0059], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0116, 1.9893, 1.9698, 0.0239, 0.0054], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9994, 1.9951, 1.9761, 0.0241, 0.0054], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0231, 1.9829, 1.9636, 0.0246, 0.0057], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0144, 1.9784, 1.9777, 0.0241, 0.0054], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0024, 2.0025, 1.9651, 0.0244, 0.0055], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0022, 1.9828, 1.9846, 0.0250, 0.0055], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0155, 1.9964, 1.9590, 0.0236, 0.0054], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0108, 1.9916, 1.9690, 0.0234, 0.0052], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0098, 1.9906, 1.9691, 0.0248, 0.0057], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0049, 2.0036, 1.9625, 0.0236, 0.0054], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0162, 1.9788, 1.9755, 0.0241, 0.0053], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0044, 2.0047, 1.9619, 0.0235, 0.0054], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0157, 1.9799, 1.9749, 0.0241, 0.0053], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0218, 1.9879, 1.9616, 0.0234, 0.0053], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9972, 1.9990, 1.9742, 0.0242, 0.0055], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0167, 1.9803, 1.9736, 0.0240, 0.0053], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0054, 2.0050, 1.9606, 0.0235, 0.0054], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0102, 1.9933, 1.9667, 0.0243, 0.0055], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0110, 1.9941, 1.9665, 0.0232, 0.0053], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0112, 1.9943, 1.9665, 0.0229, 0.0051], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0102, 1.9933, 1.9666, 0.0243, 0.0056], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0049, 2.0059, 1.9602, 0.0236, 0.0054], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0169, 1.9820, 1.9729, 0.0231, 0.0051], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0056, 1.9854, 1.9802, 0.0236, 0.0053], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0183, 1.9984, 1.9551, 0.0230, 0.0052], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0125, 1.9925, 1.9671, 0.0228, 0.0051], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0117, 1.9917, 1.9674, 0.0238, 0.0054], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0122, 1.9922, 1.9672, 0.0232, 0.0052], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0122, 1.9922, 1.9672, 0.0232, 0.0052], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0067, 2.0045, 1.9608, 0.0228, 0.0051], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0178, 1.9797, 1.9737, 0.0236, 0.0053], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0117, 1.9947, 1.9660, 0.0226, 0.0051], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0109, 1.9939, 1.9662, 0.0236, 0.0053], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0110, 1.9940, 1.9662, 0.0235, 0.0053], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0118, 1.9948, 1.9659, 0.0224, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9996, 2.0005, 1.9723, 0.0226, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0232, 1.9886, 1.9599, 0.0231, 0.0053], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0087, 1.9958, 1.9674, 0.0229, 0.0052], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0088, 1.9960, 1.9675, 0.0227, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0024, 1.9895, 1.9799, 0.0230, 0.0051], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0151, 2.0024, 1.9549, 0.0225, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0093, 1.9965, 1.9670, 0.0222, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0086, 1.9957, 1.9673, 0.0233, 0.0052], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0146, 1.9838, 1.9735, 0.0230, 0.0051], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0035, 2.0085, 1.9608, 0.0222, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0145, 2.0045, 1.9535, 0.0224, 0.0051], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0019, 1.9918, 1.9786, 0.0227, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0195, 1.9917, 1.9608, 0.0228, 0.0052], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9959, 2.0037, 1.9732, 0.0223, 0.0049], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0171, 1.9931, 1.9622, 0.0227, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9933, 2.0049, 1.9744, 0.0224, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9983, 2.0119, 1.9627, 0.0221, 0.0049], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0094, 1.9873, 1.9753, 0.0229, 0.0051], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0097, 2.0081, 1.9554, 0.0218, 0.0049], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9964, 1.9948, 1.9807, 0.0231, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9976, 1.9960, 1.9784, 0.0230, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0109, 2.0093, 1.9531, 0.0217, 0.0049], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0117, 2.0101, 1.9511, 0.0221, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9991, 1.9975, 1.9762, 0.0224, 0.0049], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0113, 2.0097, 1.9521, 0.0220, 0.0049], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9985, 1.9969, 1.9771, 0.0225, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0117, 2.0101, 1.9518, 0.0215, 0.0048], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9983, 1.9966, 1.9770, 0.0230, 0.0051], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9945, 2.0106, 1.9677, 0.0223, 0.0049], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0188, 1.9995, 1.9550, 0.0218, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0138, 2.0117, 1.9485, 0.0213, 0.0048], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0003, 1.9981, 1.9737, 0.0228, 0.0051], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0086, 2.0065, 1.9582, 0.0219, 0.0049], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0086, 2.0065, 1.9582, 0.0219, 0.0049], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0145, 1.9947, 1.9645, 0.0216, 0.0047], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0027, 2.0182, 1.9519, 0.0221, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0032, 1.9974, 1.9721, 0.0225, 0.0049], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0165, 2.0108, 1.9467, 0.0212, 0.0048], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0175, 2.0118, 1.9450, 0.0210, 0.0047], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0040, 1.9982, 1.9703, 0.0225, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0180, 1.9947, 1.9613, 0.0213, 0.0047], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0063, 2.0182, 1.9487, 0.0218, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0254, 1.9986, 1.9499, 0.0213, 0.0048], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0012, 2.0096, 1.9626, 0.0218, 0.0048], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0017, 2.0099, 1.9625, 0.0213, 0.0046], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0250, 1.9982, 1.9500, 0.0218, 0.0049], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9990, 2.0112, 1.9638, 0.0213, 0.0047], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0225, 1.9996, 1.9515, 0.0216, 0.0048], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0156, 2.0124, 1.9458, 0.0213, 0.0048], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0030, 1.9998, 1.9709, 0.0216, 0.0047], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0082, 2.0051, 1.9597, 0.0221, 0.0050], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0091, 2.0059, 1.9596, 0.0209, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0033, 2.0177, 1.9533, 0.0210, 0.0047], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0143, 1.9935, 1.9660, 0.0215, 0.0046], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0029, 2.0178, 1.9533, 0.0214, 0.0047], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0145, 1.9941, 1.9656, 0.0212, 0.0046], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0210, 1.9989, 1.9540, 0.0214, 0.0047], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9975, 2.0105, 1.9663, 0.0211, 0.0046], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0012, 1.9988, 1.9734, 0.0219, 0.0047], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0145, 2.0120, 1.9482, 0.0206, 0.0046], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0145, 1.9944, 1.9653, 0.0210, 0.0046], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0030, 2.0180, 1.9530, 0.0213, 0.0047], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0211, 1.9992, 1.9537, 0.0213, 0.0047], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9976, 2.0108, 1.9660, 0.0210, 0.0046], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0084, 2.0061, 1.9605, 0.0206, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0075, 2.0052, 1.9607, 0.0217, 0.0049], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0144, 2.0121, 1.9481, 0.0208, 0.0047], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0018, 1.9995, 1.9730, 0.0211, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0072, 2.0049, 1.9618, 0.0215, 0.0047], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0079, 2.0056, 1.9616, 0.0205, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0134, 1.9935, 1.9678, 0.0207, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0018, 2.0170, 1.9555, 0.0210, 0.0046], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0145, 2.0103, 1.9498, 0.0207, 0.0046], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0020, 1.9978, 1.9747, 0.0210, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0143, 2.0102, 1.9507, 0.0203, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0011, 1.9969, 1.9759, 0.0215, 0.0046], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0149, 2.0107, 1.9491, 0.0207, 0.0046], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0024, 1.9982, 1.9740, 0.0209, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0136, 1.9917, 1.9690, 0.0211, 0.0046], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0027, 2.0160, 1.9564, 0.0204, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9953, 2.0107, 1.9682, 0.0211, 0.0046], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0195, 1.9999, 1.9557, 0.0204, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0032, 2.0167, 1.9550, 0.0205, 0.0046], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0142, 1.9926, 1.9677, 0.0210, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0089, 2.0055, 1.9611, 0.0202, 0.0043], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0081, 2.0047, 1.9612, 0.0213, 0.0047], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0024, 1.9990, 1.9735, 0.0207, 0.0044], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0149, 2.0115, 1.9486, 0.0204, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9963, 2.0105, 1.9683, 0.0204, 0.0044], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0198, 1.9989, 1.9561, 0.0207, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9950, 2.0112, 1.9690, 0.0204, 0.0044], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0185, 1.9996, 1.9568, 0.0207, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9989, 1.9994, 1.9760, 0.0211, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0121, 2.0126, 1.9510, 0.0200, 0.0044], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0006, 2.0185, 1.9558, 0.0206, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0122, 1.9951, 1.9680, 0.0203, 0.0044], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9953, 2.0114, 1.9687, 0.0202, 0.0043], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0186, 1.9997, 1.9564, 0.0207, 0.0046], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9993, 2.0186, 1.9574, 0.0202, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0104, 1.9946, 1.9700, 0.0206, 0.0044], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9985, 2.0008, 1.9759, 0.0205, 0.0044], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0109, 2.0132, 1.9511, 0.0203, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0043, 2.0065, 1.9646, 0.0203, 0.0043], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0041, 2.0064, 1.9644, 0.0205, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0097, 1.9944, 1.9708, 0.0206, 0.0044], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9987, 2.0184, 1.9583, 0.0202, 0.0044], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9983, 2.0185, 1.9583, 0.0205, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0099, 1.9950, 1.9704, 0.0203, 0.0044], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0051, 2.0059, 1.9649, 0.0198, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0043, 2.0051, 1.9650, 0.0209, 0.0046], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0047, 2.0056, 1.9649, 0.0203, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0049, 2.0057, 1.9650, 0.0201, 0.0043], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9990, 2.0173, 1.9589, 0.0203, 0.0044], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0106, 1.9939, 1.9711, 0.0201, 0.0043], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0057, 2.0048, 1.9655, 0.0198, 0.0043], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0051, 2.0041, 1.9657, 0.0207, 0.0044], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0051, 2.0041, 1.9656, 0.0207, 0.0045], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0059, 2.0049, 1.9655, 0.0196, 0.0041], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0172, 1.9989, 1.9595, 0.0201, 0.0043], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9938, 2.0104, 1.9716, 0.0198, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0041, 2.0049, 1.9663, 0.0204, 0.0044], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0047, 2.0055, 1.9661, 0.0195, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0164, 1.9998, 1.9599, 0.0196, 0.0043], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9925, 2.0108, 1.9724, 0.0201, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9928, 2.0106, 1.9722, 0.0202, 0.0043], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0168, 1.9997, 1.9598, 0.0195, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0119, 1.9928, 1.9714, 0.0197, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0003, 2.0162, 1.9593, 0.0199, 0.0043], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0004, 1.9972, 1.9781, 0.0200, 0.0043], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0129, 2.0097, 1.9536, 0.0196, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0001, 1.9969, 1.9782, 0.0205, 0.0044], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0132, 2.0100, 1.9535, 0.0191, 0.0041], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0018, 1.9985, 1.9756, 0.0199, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0142, 2.0110, 1.9511, 0.0195, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0144, 2.0113, 1.9510, 0.0191, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0015, 1.9982, 1.9759, 0.0202, 0.0043], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0030, 2.0171, 1.9559, 0.0197, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0145, 1.9938, 1.9681, 0.0195, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0036, 2.0160, 1.9565, 0.0197, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0150, 1.9926, 1.9687, 0.0195, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0033, 1.9966, 1.9755, 0.0202, 0.0043], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0164, 2.0098, 1.9508, 0.0189, 0.0041], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0111, 2.0045, 1.9608, 0.0195, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0111, 2.0045, 1.9608, 0.0195, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0057, 2.0164, 1.9547, 0.0191, 0.0041], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0165, 1.9924, 1.9671, 0.0198, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0163, 1.9940, 1.9664, 0.0192, 0.0041], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0048, 2.0172, 1.9541, 0.0196, 0.0043], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0058, 2.0153, 1.9552, 0.0195, 0.0042], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0172, 1.9920, 1.9674, 0.0193, 0.0041], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0186, 2.0092, 1.9494, 0.0187, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0055, 1.9960, 1.9741, 0.0200, 0.0043], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0128, 2.0034, 1.9597, 0.0198, 0.0043], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0136, 2.0042, 1.9596, 0.0187, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0069, 1.9974, 1.9720, 0.0197, 0.0041], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0198, 2.0104, 1.9471, 0.0186, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0204, 2.0111, 1.9459, 0.0185, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0075, 1.9980, 1.9707, 0.0196, 0.0041], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0149, 2.0055, 1.9572, 0.0185, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0142, 2.0048, 1.9573, 0.0195, 0.0043], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0085, 1.9990, 1.9695, 0.0190, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0208, 2.0115, 1.9449, 0.0188, 0.0041], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0202, 2.0108, 1.9461, 0.0188, 0.0041], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0079, 1.9984, 1.9707, 0.0190, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0134, 2.0040, 1.9595, 0.0190, 0.0041], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0135, 2.0041, 1.9597, 0.0188, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0134, 2.0040, 1.9596, 0.0189, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0134, 2.0040, 1.9596, 0.0189, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0196, 2.0103, 1.9473, 0.0188, 0.0041], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0073, 1.9979, 1.9718, 0.0190, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0010, 2.0089, 1.9669, 0.0191, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0247, 1.9980, 1.9546, 0.0187, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0244, 1.9977, 1.9547, 0.0191, 0.0041], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0014, 2.0092, 1.9668, 0.0187, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0043, 1.9980, 1.9741, 0.0195, 0.0041], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0173, 2.0111, 1.9495, 0.0183, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0062, 2.0171, 1.9537, 0.0190, 0.0041], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0177, 1.9940, 1.9659, 0.0186, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0128, 2.0038, 1.9607, 0.0187, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0128, 2.0038, 1.9607, 0.0187, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0010, 2.0092, 1.9669, 0.0190, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0246, 1.9983, 1.9546, 0.0185, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0247, 1.9984, 1.9546, 0.0184, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0009, 2.0091, 1.9669, 0.0191, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0083, 2.0153, 1.9541, 0.0184, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0190, 1.9914, 1.9665, 0.0190, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0075, 2.0161, 1.9537, 0.0188, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0188, 1.9929, 1.9658, 0.0186, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0083, 2.0153, 1.9541, 0.0184, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0190, 1.9915, 1.9665, 0.0190, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0249, 1.9993, 1.9536, 0.0183, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0012, 2.0100, 1.9658, 0.0190, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0140, 2.0043, 1.9593, 0.0185, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0138, 2.0042, 1.9592, 0.0187, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0078, 1.9980, 1.9714, 0.0188, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0201, 2.0105, 1.9471, 0.0184, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0073, 1.9976, 1.9718, 0.0193, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0202, 2.0106, 1.9473, 0.0180, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0091, 2.0166, 1.9517, 0.0186, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0204, 1.9935, 1.9638, 0.0184, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0209, 1.9924, 1.9644, 0.0184, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0096, 2.0156, 1.9522, 0.0186, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0094, 1.9965, 1.9711, 0.0191, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0222, 2.0095, 1.9464, 0.0180, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0277, 1.9979, 1.9517, 0.0187, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0049, 2.0093, 1.9638, 0.0183, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0256, 1.9990, 1.9529, 0.0185, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0026, 2.0103, 1.9649, 0.0183, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0185, 1.9938, 1.9657, 0.0182, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0071, 2.0168, 1.9535, 0.0186, 0.0040], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0191, 1.9916, 1.9667, 0.0187, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0084, 2.0154, 1.9544, 0.0181, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0193, 2.0108, 1.9477, 0.0183, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0071, 1.9985, 1.9721, 0.0185, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0073, 2.0159, 1.9549, 0.0181, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0180, 1.9922, 1.9672, 0.0187, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0119, 2.0049, 1.9606, 0.0188, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0125, 2.0055, 1.9604, 0.0180, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0123, 2.0053, 1.9605, 0.0182, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0122, 2.0052, 1.9604, 0.0184, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0177, 1.9934, 1.9667, 0.0185, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0068, 2.0170, 1.9543, 0.0181, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0067, 2.0172, 1.9541, 0.0181, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0175, 1.9937, 1.9665, 0.0185, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0117, 2.0055, 1.9603, 0.0187, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0123, 2.0061, 1.9601, 0.0179, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0177, 1.9943, 1.9662, 0.0180, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0063, 2.0173, 1.9541, 0.0184, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0132, 2.0044, 1.9610, 0.0178, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0126, 2.0038, 1.9612, 0.0186, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0246, 1.9987, 1.9550, 0.0179, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0012, 2.0096, 1.9672, 0.0183, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0011, 2.0095, 1.9671, 0.0184, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0247, 1.9988, 1.9550, 0.0178, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0073, 1.9974, 1.9729, 0.0186, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0201, 2.0102, 1.9484, 0.0176, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0206, 2.0108, 1.9473, 0.0175, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0079, 1.9979, 1.9718, 0.0185, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0212, 2.0114, 1.9463, 0.0174, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0084, 1.9984, 1.9708, 0.0186, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0039, 2.0111, 1.9630, 0.0182, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0274, 2.0005, 1.9509, 0.0176, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0109, 2.0172, 1.9504, 0.0177, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0217, 1.9937, 1.9628, 0.0181, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0097, 1.9993, 1.9686, 0.0185, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0226, 2.0123, 1.9442, 0.0173, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0173, 2.0069, 1.9548, 0.0173, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0166, 2.0063, 1.9549, 0.0183, 0.0039], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0232, 2.0129, 1.9427, 0.0176, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0110, 2.0006, 1.9670, 0.0178, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0164, 2.0060, 1.9562, 0.0177, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0164, 2.0060, 1.9562, 0.0177, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0167, 2.0063, 1.9560, 0.0173, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0161, 2.0057, 1.9563, 0.0181, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0111, 2.0178, 1.9500, 0.0174, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0218, 1.9943, 1.9623, 0.0179, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0047, 2.0117, 1.9621, 0.0179, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0280, 2.0010, 1.9499, 0.0174, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0109, 2.0180, 1.9499, 0.0174, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0216, 1.9946, 1.9623, 0.0179, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0108, 2.0182, 1.9498, 0.0174, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0215, 1.9948, 1.9622, 0.0179, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0214, 1.9950, 1.9620, 0.0179, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0108, 2.0185, 1.9498, 0.0174, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0042, 2.0133, 1.9614, 0.0175, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0270, 2.0021, 1.9495, 0.0177, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0146, 2.0087, 1.9560, 0.0171, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0140, 2.0080, 1.9562, 0.0181, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0260, 2.0031, 1.9500, 0.0173, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0027, 2.0138, 1.9622, 0.0177, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0143, 2.0084, 1.9561, 0.0175, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0143, 2.0084, 1.9561, 0.0175, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0259, 2.0031, 1.9500, 0.0173, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0026, 2.0138, 1.9623, 0.0177, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0143, 2.0085, 1.9562, 0.0174, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0142, 2.0084, 1.9561, 0.0176, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0146, 2.0088, 1.9561, 0.0170, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0139, 2.0081, 1.9562, 0.0180, 0.0038], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0090, 2.0202, 1.9500, 0.0172, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0197, 1.9968, 1.9623, 0.0176, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0204, 2.0148, 1.9440, 0.0172, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0082, 2.0025, 1.9681, 0.0176, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0254, 2.0028, 1.9507, 0.0175, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0026, 2.0140, 1.9626, 0.0173, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0071, 2.0203, 1.9513, 0.0176, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0184, 1.9976, 1.9633, 0.0172, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0250, 2.0017, 1.9523, 0.0175, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0022, 2.0129, 1.9641, 0.0173, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0009, 2.0135, 1.9648, 0.0173, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0237, 2.0023, 1.9529, 0.0175, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0228, 2.0031, 1.9534, 0.0171, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9995, 2.0138, 1.9656, 0.0176, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9995, 2.0138, 1.9655, 0.0176, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0229, 2.0032, 1.9534, 0.0171, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0002, 2.0135, 1.9652, 0.0175, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0235, 2.0028, 1.9530, 0.0171, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0120, 2.0082, 1.9591, 0.0172, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0119, 2.0081, 1.9590, 0.0174, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0056, 2.0017, 1.9711, 0.0179, 0.0037], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0183, 2.0145, 1.9469, 0.0168, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0011, 2.0143, 1.9636, 0.0175, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0243, 2.0036, 1.9515, 0.0170, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0127, 2.0089, 1.9575, 0.0173, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0127, 2.0089, 1.9575, 0.0173, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0191, 2.0153, 1.9453, 0.0168, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0064, 2.0026, 1.9697, 0.0177, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0071, 2.0032, 1.9687, 0.0174, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0193, 2.0155, 1.9447, 0.0170, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0190, 2.0152, 1.9452, 0.0170, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0068, 2.0030, 1.9692, 0.0174, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0063, 2.0025, 1.9699, 0.0177, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0190, 2.0152, 1.9456, 0.0168, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0131, 2.0092, 1.9570, 0.0172, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0131, 2.0092, 1.9570, 0.0172, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0243, 2.0036, 1.9510, 0.0174, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0017, 2.0149, 1.9630, 0.0170, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9996, 2.0155, 1.9640, 0.0174, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0228, 2.0048, 1.9519, 0.0170, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0166, 1.9984, 1.9640, 0.0175, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0060, 2.0217, 1.9519, 0.0169, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0223, 2.0053, 1.9516, 0.0173, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9995, 2.0164, 1.9635, 0.0171, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0098, 2.0114, 1.9581, 0.0171, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0098, 2.0114, 1.9581, 0.0171, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0162, 2.0177, 1.9460, 0.0167, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0035, 2.0051, 1.9702, 0.0176, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0039, 2.0055, 1.9694, 0.0176, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0166, 2.0181, 1.9452, 0.0166, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0054, 2.0238, 1.9506, 0.0168, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0159, 2.0005, 1.9627, 0.0174, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9990, 2.0184, 1.9623, 0.0169, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0216, 2.0073, 1.9503, 0.0172, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0139, 2.0021, 1.9633, 0.0172, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0033, 2.0252, 1.9511, 0.0168, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0140, 2.0020, 1.9633, 0.0172, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0033, 2.0251, 1.9512, 0.0168, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0148, 2.0197, 1.9452, 0.0169, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0026, 2.0075, 1.9691, 0.0172, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0197, 2.0078, 1.9518, 0.0172, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9970, 2.0189, 1.9637, 0.0169, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9951, 2.0194, 1.9647, 0.0173, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0184, 2.0089, 1.9526, 0.0168, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0137, 2.0198, 1.9462, 0.0168, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0015, 2.0077, 1.9701, 0.0172, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0018, 2.0248, 1.9528, 0.0171, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0129, 2.0022, 1.9645, 0.0169, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0195, 2.0070, 1.9532, 0.0168, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9963, 2.0177, 1.9654, 0.0172, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0134, 2.0006, 1.9652, 0.0173, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0028, 2.0238, 1.9532, 0.0167, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0141, 2.0192, 1.9467, 0.0165, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0015, 2.0066, 1.9709, 0.0175, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0079, 2.0130, 1.9581, 0.0174, 0.0036], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0085, 2.0136, 1.9580, 0.0165, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0083, 2.0134, 1.9581, 0.0169, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0083, 2.0134, 1.9581, 0.0169, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0020, 2.0071, 1.9701, 0.0173, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0146, 2.0197, 1.9459, 0.0164, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0147, 2.0198, 1.9453, 0.0167, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0026, 2.0078, 1.9693, 0.0169, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0028, 2.0247, 1.9524, 0.0167, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0134, 2.0016, 1.9645, 0.0170, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0081, 2.0132, 1.9585, 0.0169, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0081, 2.0132, 1.9585, 0.0169, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0028, 2.0247, 1.9525, 0.0166, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0134, 2.0015, 1.9645, 0.0171, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0015, 2.0075, 1.9702, 0.0173, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0141, 2.0200, 1.9461, 0.0164, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0135, 2.0025, 1.9635, 0.0171, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0030, 2.0256, 1.9515, 0.0165, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9963, 2.0199, 1.9632, 0.0171, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0195, 2.0094, 1.9512, 0.0165, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0087, 2.0143, 1.9568, 0.0168, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0087, 2.0143, 1.9568, 0.0168, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9973, 2.0199, 1.9627, 0.0167, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0200, 2.0088, 1.9509, 0.0169, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0132, 2.0035, 1.9632, 0.0167, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0022, 2.0261, 1.9515, 0.0169, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9969, 2.0192, 1.9639, 0.0167, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0195, 2.0081, 1.9520, 0.0169, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0134, 2.0201, 1.9465, 0.0166, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0012, 2.0081, 1.9703, 0.0169, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0186, 2.0086, 1.9529, 0.0165, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9954, 2.0191, 1.9650, 0.0170, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0193, 2.0083, 1.9525, 0.0165, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9962, 2.0188, 1.9646, 0.0170, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0198, 2.0076, 1.9522, 0.0169, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9972, 2.0188, 1.9641, 0.0166, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0014, 2.0251, 1.9531, 0.0169, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0126, 2.0027, 1.9649, 0.0165, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0076, 2.0120, 1.9600, 0.0170, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0081, 2.0125, 1.9598, 0.0163, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0079, 2.0123, 1.9599, 0.0166, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0079, 2.0123, 1.9599, 0.0166, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0142, 2.0186, 1.9479, 0.0161, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0016, 2.0060, 1.9718, 0.0172, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0198, 2.0075, 1.9526, 0.0166, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9973, 2.0185, 1.9644, 0.0165, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0023, 2.0249, 1.9530, 0.0164, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0129, 2.0020, 1.9650, 0.0167, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0021, 2.0246, 1.9532, 0.0166, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0132, 2.0021, 1.9649, 0.0165, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0142, 2.0183, 1.9477, 0.0164, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0022, 2.0063, 1.9715, 0.0166, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9961, 2.0170, 1.9667, 0.0168, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0192, 2.0065, 1.9547, 0.0163, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9971, 2.0170, 1.9662, 0.0164, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0196, 2.0059, 1.9544, 0.0166, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0019, 2.0231, 1.9550, 0.0166, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0130, 2.0006, 1.9667, 0.0164, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0135, 1.9996, 1.9673, 0.0164, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0024, 2.0220, 1.9555, 0.0167, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0148, 2.0153, 1.9503, 0.0163, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0028, 2.0032, 1.9740, 0.0167, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0085, 2.0090, 1.9625, 0.0166, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0086, 2.0091, 1.9626, 0.0164, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0149, 2.0153, 1.9506, 0.0160, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0023, 2.0028, 1.9744, 0.0170, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0206, 2.0043, 1.9553, 0.0165, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9980, 2.0153, 1.9670, 0.0163, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0080, 2.0100, 1.9617, 0.0169, 0.0035], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0086, 2.0106, 1.9616, 0.0160, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0087, 2.0106, 1.9615, 0.0160, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0081, 2.0101, 1.9617, 0.0167, 0.0034], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0029, 2.0216, 1.9558, 0.0164, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0140, 1.9991, 1.9675, 0.0162, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0089, 2.0094, 1.9621, 0.0163, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0089, 2.0094, 1.9621, 0.0163, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0150, 2.0154, 1.9503, 0.0161, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0030, 2.0034, 1.9739, 0.0165, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0150, 2.0154, 1.9505, 0.0158, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0026, 2.0030, 1.9744, 0.0167, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0039, 2.0211, 1.9557, 0.0160, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0144, 1.9981, 1.9676, 0.0165, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0151, 2.0165, 1.9494, 0.0158, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0027, 2.0041, 1.9732, 0.0167, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0033, 2.0047, 1.9724, 0.0164, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0153, 2.0167, 1.9488, 0.0160, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9975, 2.0157, 1.9670, 0.0165, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0205, 2.0052, 1.9551, 0.0160, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0159, 2.0164, 1.9487, 0.0158, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0035, 2.0040, 1.9726, 0.0167, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0103, 2.0108, 1.9598, 0.0158, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0098, 2.0103, 1.9600, 0.0165, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0164, 2.0168, 1.9480, 0.0157, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0039, 2.0044, 1.9718, 0.0166, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0219, 2.0057, 1.9533, 0.0158, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9990, 2.0162, 1.9652, 0.0164, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0170, 2.0166, 1.9471, 0.0160, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0052, 2.0047, 1.9707, 0.0162, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0103, 2.0098, 1.9601, 0.0164, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0108, 2.0104, 1.9599, 0.0158, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0158, 1.9986, 1.9659, 0.0163, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0054, 2.0216, 1.9541, 0.0158, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0103, 2.0107, 1.9597, 0.0160, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0103, 2.0107, 1.9597, 0.0160, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0103, 2.0107, 1.9597, 0.0160, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0103, 2.0107, 1.9597, 0.0160, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0217, 2.0055, 1.9537, 0.0158, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9988, 2.0160, 1.9656, 0.0163, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0220, 2.0050, 1.9535, 0.0162, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9997, 2.0160, 1.9653, 0.0159, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9979, 2.0165, 1.9661, 0.0163, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0208, 2.0060, 1.9542, 0.0157, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9988, 2.0165, 1.9657, 0.0158, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0211, 2.0054, 1.9540, 0.0161, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0137, 2.0002, 1.9666, 0.0162, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0033, 2.0231, 1.9547, 0.0157, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0082, 2.0122, 1.9603, 0.0160, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0083, 2.0123, 1.9604, 0.0159, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0194, 2.0067, 1.9545, 0.0161, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9970, 2.0178, 1.9663, 0.0158, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0065, 2.0127, 1.9612, 0.0163, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0071, 2.0133, 1.9611, 0.0155, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0009, 2.0071, 1.9729, 0.0160, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0128, 2.0189, 1.9493, 0.0158, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0001, 2.0064, 1.9739, 0.0164, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0126, 2.0188, 1.9502, 0.0154, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0133, 2.0194, 1.9489, 0.0153, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0008, 2.0070, 1.9726, 0.0163, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0015, 2.0077, 1.9715, 0.0162, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0139, 2.0200, 1.9477, 0.0153, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0083, 2.0144, 1.9589, 0.0153, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0077, 2.0138, 1.9590, 0.0161, 0.0033], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0141, 2.0202, 1.9472, 0.0155, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0021, 2.0083, 1.9707, 0.0158, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0133, 2.0028, 1.9653, 0.0156, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0023, 2.0251, 1.9537, 0.0158, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0138, 2.0017, 1.9659, 0.0156, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0029, 2.0240, 1.9542, 0.0157, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0089, 2.0119, 1.9606, 0.0156, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0088, 2.0118, 1.9605, 0.0157, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0029, 2.0060, 1.9723, 0.0157, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0148, 2.0178, 1.9488, 0.0155, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0083, 2.0114, 1.9615, 0.0157, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0083, 2.0114, 1.9615, 0.0157, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0083, 2.0113, 1.9615, 0.0157, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0084, 2.0114, 1.9616, 0.0156, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0139, 2.0002, 1.9674, 0.0155, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0028, 2.0224, 1.9557, 0.0158, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0143, 1.9984, 1.9682, 0.0159, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0039, 2.0213, 1.9564, 0.0154, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0091, 2.0107, 1.9620, 0.0152, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0085, 2.0102, 1.9621, 0.0160, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0089, 2.0105, 1.9621, 0.0155, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0088, 2.0105, 1.9620, 0.0156, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0086, 2.0102, 1.9621, 0.0159, 0.0032], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0092, 2.0108, 1.9620, 0.0152, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9977, 2.0161, 1.9679, 0.0153, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0200, 2.0051, 1.9562, 0.0156, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0137, 2.0174, 1.9509, 0.0150, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0014, 2.0051, 1.9745, 0.0159, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9967, 2.0171, 1.9679, 0.0153, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0190, 2.0062, 1.9563, 0.0155, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0073, 2.0123, 1.9624, 0.0151, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0068, 2.0118, 1.9626, 0.0158, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0130, 2.0180, 1.9508, 0.0152, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0011, 2.0062, 1.9742, 0.0155, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0069, 2.0119, 1.9629, 0.0154, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0069, 2.0119, 1.9629, 0.0154, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0014, 2.0229, 1.9571, 0.0155, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0124, 2.0007, 1.9687, 0.0152, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0076, 2.0104, 1.9636, 0.0154, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0076, 2.0104, 1.9636, 0.0154, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0021, 2.0215, 1.9579, 0.0154, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0131, 1.9992, 1.9694, 0.0153, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0080, 2.0094, 1.9641, 0.0154, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0081, 2.0095, 1.9642, 0.0153, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0136, 1.9983, 1.9700, 0.0152, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0025, 2.0205, 1.9583, 0.0155, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0087, 2.0081, 1.9649, 0.0153, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0087, 2.0081, 1.9649, 0.0153, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0035, 2.0194, 1.9590, 0.0151, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0140, 1.9967, 1.9708, 0.0156, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0026, 2.0028, 1.9762, 0.0154, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0143, 2.0146, 1.9528, 0.0152, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0133, 1.9969, 1.9712, 0.0156, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0028, 2.0196, 1.9595, 0.0151, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0075, 2.0087, 1.9651, 0.0156, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0080, 2.0091, 1.9649, 0.0150, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0133, 1.9978, 1.9708, 0.0152, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0023, 2.0200, 1.9593, 0.0154, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0082, 2.0081, 1.9655, 0.0153, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0082, 2.0081, 1.9655, 0.0153, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0137, 1.9969, 1.9713, 0.0152, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0028, 2.0192, 1.9597, 0.0154, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0086, 2.0072, 1.9659, 0.0153, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0086, 2.0072, 1.9659, 0.0153, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0148, 2.0134, 1.9542, 0.0148, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0025, 2.0011, 1.9776, 0.0158, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0090, 2.0076, 1.9647, 0.0156, 0.0031], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0096, 2.0081, 1.9646, 0.0148, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9979, 2.0132, 1.9705, 0.0154, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0207, 2.0027, 1.9588, 0.0149, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0160, 2.0138, 1.9526, 0.0147, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0038, 2.0016, 1.9761, 0.0156, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0158, 1.9969, 1.9695, 0.0150, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0048, 2.0191, 1.9579, 0.0153, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0164, 1.9956, 1.9702, 0.0149, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0054, 2.0178, 1.9586, 0.0152, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0004, 2.0110, 1.9708, 0.0149, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0225, 2.0000, 1.9593, 0.0152, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0104, 2.0064, 1.9657, 0.0147, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0098, 2.0059, 1.9658, 0.0154, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0050, 2.0175, 1.9599, 0.0148, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0154, 1.9948, 1.9716, 0.0152, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0212, 2.0016, 1.9596, 0.0147, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9985, 2.0121, 1.9713, 0.0152, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0107, 2.0069, 1.9651, 0.0146, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0101, 2.0063, 1.9652, 0.0154, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0166, 2.0128, 1.9534, 0.0144, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0044, 2.0005, 1.9768, 0.0154, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0113, 2.0075, 1.9639, 0.0145, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0108, 2.0070, 1.9640, 0.0152, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0164, 1.9959, 1.9699, 0.0150, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0059, 2.0186, 1.9581, 0.0146, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0110, 2.0074, 1.9639, 0.0148, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0110, 2.0074, 1.9639, 0.0148, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0113, 2.0077, 1.9639, 0.0144, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0108, 2.0071, 1.9640, 0.0152, 0.0030], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0052, 2.0016, 1.9755, 0.0149, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0170, 2.0134, 1.9523, 0.0146, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0054, 2.0183, 1.9585, 0.0149, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0164, 1.9962, 1.9701, 0.0146, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0063, 2.0174, 1.9591, 0.0145, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0168, 1.9946, 1.9708, 0.0150, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0167, 1.9956, 1.9704, 0.0146, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0058, 2.0177, 1.9588, 0.0149, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0179, 2.0116, 1.9535, 0.0142, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0058, 1.9993, 1.9769, 0.0152, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0183, 2.0120, 1.9525, 0.0145, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0066, 2.0001, 1.9757, 0.0148, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0122, 2.0059, 1.9645, 0.0147, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0122, 2.0059, 1.9645, 0.0147, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0175, 1.9945, 1.9704, 0.0148, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0070, 2.0171, 1.9586, 0.0145, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0182, 2.0121, 1.9526, 0.0143, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0061, 1.9999, 1.9761, 0.0151, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0071, 2.0174, 1.9580, 0.0147, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0179, 1.9952, 1.9696, 0.0146, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0070, 1.9997, 1.9757, 0.0148, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0187, 2.0115, 1.9525, 0.0145, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0014, 2.0107, 1.9704, 0.0148, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0239, 2.0002, 1.9587, 0.0145, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0187, 2.0116, 1.9528, 0.0142, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0066, 1.9993, 1.9762, 0.0151, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0074, 2.0001, 1.9750, 0.0147, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0191, 2.0119, 1.9518, 0.0144, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0078, 2.0170, 1.9580, 0.0144, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0183, 1.9945, 1.9698, 0.0148, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0075, 2.0170, 1.9580, 0.0147, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0184, 1.9949, 1.9696, 0.0145, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0083, 2.0160, 1.9585, 0.0144, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0188, 1.9935, 1.9703, 0.0147, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0021, 2.0102, 1.9701, 0.0148, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0246, 1.9998, 1.9585, 0.0143, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0086, 2.0161, 1.9582, 0.0144, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0190, 1.9935, 1.9700, 0.0147, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0135, 2.0048, 1.9640, 0.0149, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0139, 2.0052, 1.9639, 0.0143, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0138, 2.0051, 1.9640, 0.0145, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0137, 2.0050, 1.9639, 0.0146, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0247, 1.9996, 1.9582, 0.0147, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0027, 2.0105, 1.9697, 0.0144, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0010, 2.0109, 1.9705, 0.0147, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0236, 2.0005, 1.9589, 0.0143, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0067, 1.9994, 1.9761, 0.0150, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0188, 2.0117, 1.9528, 0.0140, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0185, 1.9948, 1.9693, 0.0146, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0081, 2.0173, 1.9575, 0.0143, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0132, 2.0062, 1.9633, 0.0145, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0133, 2.0063, 1.9634, 0.0144, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0022, 2.0117, 1.9691, 0.0144, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0242, 2.0008, 1.9576, 0.0145, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0181, 2.0126, 1.9522, 0.0144, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0065, 2.0009, 1.9754, 0.0145, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0059, 2.0002, 1.9763, 0.0149, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0179, 2.0124, 1.9529, 0.0141, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0070, 2.0178, 1.9582, 0.0142, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0174, 1.9953, 1.9699, 0.0147, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0061, 2.0013, 1.9753, 0.0146, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0178, 2.0131, 1.9522, 0.0143, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0120, 2.0072, 1.9641, 0.0141, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0115, 2.0067, 1.9642, 0.0148, 0.0029], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0227, 2.0016, 1.9584, 0.0145, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0008, 2.0125, 1.9699, 0.0142, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0214, 2.0022, 1.9591, 0.0145, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9994, 2.0131, 1.9706, 0.0142, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9982, 2.0138, 1.9712, 0.0142, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0202, 2.0029, 1.9597, 0.0145, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0025, 2.0199, 1.9604, 0.0145, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0135, 1.9979, 1.9719, 0.0142, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0025, 2.0016, 1.9783, 0.0148, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0147, 2.0138, 1.9551, 0.0139, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0092, 2.0082, 1.9657, 0.0143, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0092, 2.0082, 1.9657, 0.0143, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0150, 2.0141, 1.9541, 0.0141, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0033, 2.0024, 1.9771, 0.0144, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0090, 2.0081, 1.9660, 0.0143, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0090, 2.0081, 1.9660, 0.0143, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0202, 2.0029, 1.9602, 0.0141, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9977, 2.0133, 1.9718, 0.0144, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0201, 2.0027, 1.9603, 0.0143, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9980, 2.0135, 1.9717, 0.0142, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0193, 2.0030, 1.9607, 0.0143, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9972, 2.0139, 1.9721, 0.0142, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0020, 2.0198, 1.9610, 0.0144, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0130, 1.9978, 1.9725, 0.0141, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0139, 2.0135, 1.9558, 0.0141, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0023, 2.0018, 1.9788, 0.0144, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0134, 1.9965, 1.9734, 0.0141, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0025, 2.0185, 1.9619, 0.0144, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0033, 2.0175, 1.9624, 0.0141, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0138, 1.9951, 1.9741, 0.0144, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0033, 2.0177, 1.9624, 0.0140, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0137, 1.9952, 1.9740, 0.0145, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0082, 2.0071, 1.9679, 0.0142, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0082, 2.0071, 1.9679, 0.0142, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0140, 2.0129, 1.9563, 0.0141, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0024, 2.0013, 1.9793, 0.0143, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0021, 2.0010, 1.9800, 0.0143, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0137, 2.0125, 1.9570, 0.0141, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0073, 2.0062, 1.9693, 0.0145, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0078, 2.0066, 1.9691, 0.0139, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0024, 2.0176, 1.9634, 0.0140, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0128, 1.9951, 1.9750, 0.0144, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0182, 2.0015, 1.9632, 0.0143, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9963, 2.0125, 1.9746, 0.0141, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9949, 2.0128, 1.9753, 0.0143, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0173, 2.0023, 1.9637, 0.0140, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0061, 2.0072, 1.9694, 0.0145, 0.0028], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0066, 2.0077, 1.9693, 0.0138, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0006, 2.0018, 1.9808, 0.0142, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0122, 2.0133, 1.9578, 0.0140, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0009, 2.0184, 1.9642, 0.0139, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0113, 1.9959, 1.9758, 0.0143, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0058, 2.0077, 1.9697, 0.0141, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0058, 2.0077, 1.9697, 0.0141, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0119, 2.0138, 1.9581, 0.0137, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9998, 2.0017, 1.9812, 0.0146, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0066, 2.0086, 1.9685, 0.0138, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0062, 2.0081, 1.9687, 0.0144, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0064, 2.0084, 1.9686, 0.0140, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0064, 2.0084, 1.9686, 0.0140, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0062, 2.0081, 1.9686, 0.0144, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0067, 2.0086, 1.9685, 0.0137, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0010, 2.0193, 1.9629, 0.0141, 0.0027], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0119, 1.9974, 1.9743, 0.0139, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0070, 2.0072, 1.9691, 0.0140, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0071, 2.0073, 1.9692, 0.0139, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0180, 2.0019, 1.9635, 0.0140, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9960, 2.0127, 1.9749, 0.0139, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9950, 2.0128, 1.9753, 0.0142, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0175, 2.0024, 1.9638, 0.0137, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0017, 2.0185, 1.9635, 0.0137, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0121, 1.9961, 1.9750, 0.0142, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0124, 2.0136, 1.9575, 0.0139, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0009, 2.0021, 1.9804, 0.0140, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0123, 2.0135, 1.9580, 0.0136, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0003, 2.0016, 1.9811, 0.0143, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0178, 2.0027, 1.9632, 0.0138, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9954, 2.0132, 1.9748, 0.0141, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0126, 2.0137, 1.9574, 0.0138, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0010, 2.0021, 1.9803, 0.0141, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0119, 1.9965, 1.9749, 0.0141, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0015, 2.0189, 1.9633, 0.0138, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9956, 2.0133, 1.9747, 0.0138, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0176, 2.0024, 1.9634, 0.0140, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0057, 2.0080, 1.9695, 0.0142, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0061, 2.0084, 1.9693, 0.0136, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0002, 2.0024, 1.9808, 0.0140, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0118, 2.0140, 1.9579, 0.0137, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0170, 2.0029, 1.9639, 0.0137, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9946, 2.0133, 1.9754, 0.0141, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0124, 2.0138, 1.9577, 0.0135, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0004, 2.0019, 1.9808, 0.0143, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0119, 1.9970, 1.9744, 0.0141, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0016, 2.0193, 1.9629, 0.0136, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0006, 2.0027, 1.9799, 0.0142, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0125, 2.0146, 1.9568, 0.0135, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0180, 2.0038, 1.9620, 0.0137, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9956, 2.0142, 1.9736, 0.0140, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0122, 1.9977, 1.9735, 0.0140, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0018, 2.0200, 1.9620, 0.0137, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0069, 2.0090, 1.9677, 0.0138, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0069, 2.0090, 1.9677, 0.0138, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9957, 2.0142, 1.9735, 0.0140, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0181, 2.0038, 1.9619, 0.0136, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0072, 2.0085, 1.9675, 0.0141, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0077, 2.0090, 1.9673, 0.0135, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9963, 2.0140, 1.9732, 0.0140, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0186, 2.0036, 1.9617, 0.0136, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0138, 2.0144, 1.9557, 0.0136, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0022, 2.0028, 1.9785, 0.0139, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0080, 2.0086, 1.9674, 0.0135, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0076, 2.0082, 1.9675, 0.0141, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0019, 2.0024, 1.9789, 0.0142, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0139, 2.0144, 1.9559, 0.0133, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0142, 2.0147, 1.9550, 0.0136, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0026, 2.0032, 1.9778, 0.0139, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0025, 2.0030, 1.9782, 0.0138, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0140, 2.0145, 1.9553, 0.0136, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0021, 2.0027, 1.9788, 0.0139, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0136, 2.0142, 1.9560, 0.0136, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0075, 2.0081, 1.9678, 0.0140, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0079, 2.0085, 1.9677, 0.0134, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0078, 2.0083, 1.9678, 0.0136, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0077, 2.0083, 1.9677, 0.0137, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0137, 2.0143, 1.9562, 0.0133, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0017, 2.0023, 1.9792, 0.0141, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0025, 2.0031, 1.9782, 0.0137, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0140, 2.0146, 1.9553, 0.0136, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0133, 1.9975, 1.9732, 0.0135, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0025, 2.0193, 1.9618, 0.0138, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0025, 2.0014, 1.9795, 0.0140, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0144, 2.0133, 1.9565, 0.0133, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0030, 2.0019, 1.9788, 0.0138, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0145, 2.0135, 1.9560, 0.0135, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0034, 2.0186, 1.9620, 0.0135, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0138, 1.9964, 1.9735, 0.0138, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0031, 2.0185, 1.9620, 0.0138, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0140, 1.9967, 1.9734, 0.0135, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0091, 2.0066, 1.9682, 0.0136, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0091, 2.0066, 1.9682, 0.0136, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0037, 2.0174, 1.9626, 0.0137, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0145, 1.9956, 1.9740, 0.0135, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0154, 2.0113, 1.9574, 0.0135, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0038, 1.9998, 1.9801, 0.0137, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0092, 2.0052, 1.9691, 0.0139, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0097, 2.0056, 1.9690, 0.0133, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0205, 2.0003, 1.9633, 0.0134, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9984, 2.0107, 1.9748, 0.0137, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9986, 2.0108, 1.9747, 0.0134, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0204, 2.0000, 1.9634, 0.0137, 0.0026], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0136, 1.9948, 1.9753, 0.0138, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0033, 2.0171, 1.9639, 0.0133, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0190, 2.0011, 1.9637, 0.0137, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9973, 2.0119, 1.9750, 0.0134, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0014, 2.0013, 1.9812, 0.0136, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0129, 2.0128, 1.9584, 0.0134, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0121, 1.9956, 1.9762, 0.0137, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0016, 2.0178, 1.9647, 0.0134, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0128, 2.0128, 1.9589, 0.0131, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0008, 2.0009, 1.9818, 0.0140, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0130, 2.0131, 1.9579, 0.0134, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0016, 2.0017, 1.9807, 0.0136, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9958, 2.0123, 1.9757, 0.0137, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0181, 2.0019, 1.9643, 0.0133, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0133, 2.0126, 1.9583, 0.0133, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0018, 2.0011, 1.9810, 0.0136, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0022, 2.0178, 1.9642, 0.0133, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0126, 1.9956, 1.9757, 0.0136, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0133, 2.0128, 1.9584, 0.0131, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0014, 2.0009, 1.9813, 0.0139, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0130, 1.9963, 1.9747, 0.0136, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0027, 2.0184, 1.9632, 0.0133, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0130, 1.9963, 1.9746, 0.0137, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0026, 2.0186, 1.9631, 0.0132, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0186, 2.0028, 1.9629, 0.0133, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9964, 2.0132, 1.9744, 0.0136, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0019, 2.0022, 1.9798, 0.0136, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0134, 2.0137, 1.9572, 0.0133, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0135, 2.0137, 1.9573, 0.0131, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0016, 2.0019, 1.9802, 0.0138, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0019, 2.0022, 1.9797, 0.0138, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0138, 2.0140, 1.9567, 0.0131, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0022, 2.0024, 1.9791, 0.0138, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0141, 2.0143, 1.9562, 0.0130, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9975, 2.0140, 1.9725, 0.0135, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0196, 2.0037, 1.9610, 0.0132, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0035, 2.0199, 1.9610, 0.0132, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0138, 1.9977, 1.9725, 0.0136, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0195, 2.0041, 1.9608, 0.0132, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9973, 2.0144, 1.9723, 0.0135, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9974, 2.0144, 1.9723, 0.0135, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0195, 2.0040, 1.9608, 0.0132, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9975, 2.0143, 1.9722, 0.0135, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0196, 2.0040, 1.9607, 0.0132, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0086, 2.0091, 1.9664, 0.0134, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0087, 2.0092, 1.9665, 0.0133, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0197, 2.0040, 1.9607, 0.0132, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9976, 2.0143, 1.9722, 0.0135, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0147, 2.0150, 1.9549, 0.0130, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0028, 2.0032, 1.9778, 0.0137, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0200, 2.0042, 1.9602, 0.0132, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9979, 2.0145, 1.9717, 0.0135, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0144, 1.9984, 1.9715, 0.0133, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0037, 2.0202, 1.9603, 0.0134, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0093, 2.0086, 1.9662, 0.0134, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0094, 2.0086, 1.9663, 0.0133, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0091, 2.0083, 1.9663, 0.0137, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0096, 2.0088, 1.9662, 0.0130, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0145, 1.9975, 1.9720, 0.0135, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0043, 2.0197, 1.9606, 0.0131, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0202, 2.0039, 1.9603, 0.0131, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9981, 2.0142, 1.9718, 0.0134, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0150, 2.0148, 1.9546, 0.0132, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0035, 2.0033, 1.9773, 0.0134, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0040, 2.0199, 1.9607, 0.0131, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0142, 1.9977, 1.9721, 0.0135, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0148, 2.0152, 1.9547, 0.0129, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0030, 2.0034, 1.9776, 0.0136, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9980, 2.0146, 1.9714, 0.0135, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0202, 2.0044, 1.9600, 0.0131, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0044, 2.0203, 1.9598, 0.0131, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0147, 1.9982, 1.9712, 0.0135, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0153, 2.0157, 1.9538, 0.0128, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0034, 2.0038, 1.9767, 0.0137, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0096, 2.0099, 1.9646, 0.0135, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0100, 2.0103, 1.9644, 0.0130, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0151, 1.9992, 1.9701, 0.0131, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0045, 2.0209, 1.9589, 0.0133, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0099, 2.0092, 1.9649, 0.0135, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0104, 2.0096, 1.9648, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0051, 2.0204, 1.9592, 0.0129, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0153, 1.9983, 1.9706, 0.0134, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0041, 2.0039, 1.9760, 0.0136, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0160, 2.0158, 1.9532, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9995, 2.0155, 1.9695, 0.0130, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0212, 2.0049, 1.9583, 0.0132, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0044, 2.0214, 1.9587, 0.0132, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0150, 1.9997, 1.9699, 0.0130, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9991, 2.0152, 1.9703, 0.0130, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0208, 2.0045, 1.9591, 0.0132, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0145, 1.9991, 1.9708, 0.0133, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0042, 2.0212, 1.9593, 0.0130, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9984, 2.0156, 1.9707, 0.0130, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0201, 2.0049, 1.9594, 0.0132, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0085, 2.0109, 1.9655, 0.0128, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0080, 2.0105, 1.9656, 0.0134, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0029, 2.0215, 1.9600, 0.0132, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0136, 1.9999, 1.9712, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0141, 1.9988, 1.9718, 0.0130, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0035, 2.0205, 1.9605, 0.0131, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0200, 2.0037, 1.9609, 0.0131, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9983, 2.0143, 1.9721, 0.0130, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0082, 2.0091, 1.9669, 0.0134, 0.0025], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0087, 2.0095, 1.9668, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0034, 2.0203, 1.9612, 0.0128, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0137, 1.9983, 1.9726, 0.0131, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0028, 2.0037, 1.9781, 0.0131, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0142, 2.0151, 1.9555, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9974, 2.0145, 1.9728, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0191, 2.0039, 1.9616, 0.0131, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0025, 2.0205, 1.9618, 0.0128, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0128, 1.9985, 1.9732, 0.0132, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0185, 2.0048, 1.9616, 0.0128, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9964, 2.0150, 1.9730, 0.0132, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0133, 1.9989, 1.9727, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0026, 2.0205, 1.9615, 0.0131, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0082, 2.0085, 1.9677, 0.0132, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0086, 2.0089, 1.9675, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0084, 2.0087, 1.9676, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0084, 2.0087, 1.9676, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0086, 2.0089, 1.9676, 0.0126, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0082, 2.0085, 1.9677, 0.0133, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0026, 2.0029, 1.9790, 0.0132, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0143, 2.0146, 1.9562, 0.0125, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0087, 2.0090, 1.9672, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0087, 2.0090, 1.9672, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0144, 2.0147, 1.9558, 0.0128, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0030, 2.0033, 1.9784, 0.0130, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0032, 2.0196, 1.9621, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0135, 1.9976, 1.9735, 0.0130, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0193, 2.0035, 1.9621, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9973, 2.0138, 1.9735, 0.0130, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0033, 2.0196, 1.9621, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0135, 1.9976, 1.9734, 0.0131, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0136, 1.9982, 1.9732, 0.0128, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0029, 2.0198, 1.9620, 0.0130, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0087, 2.0080, 1.9681, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0087, 2.0080, 1.9681, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0144, 2.0138, 1.9568, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0030, 2.0023, 1.9793, 0.0130, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0195, 2.0028, 1.9627, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9975, 2.0131, 1.9741, 0.0130, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0086, 2.0079, 1.9683, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0086, 2.0079, 1.9683, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9978, 2.0132, 1.9739, 0.0128, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0194, 2.0026, 1.9628, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0131, 1.9972, 1.9744, 0.0130, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0028, 2.0191, 1.9630, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0028, 2.0192, 1.9630, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0131, 1.9972, 1.9743, 0.0131, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0077, 2.0086, 1.9684, 0.0129, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0078, 2.0087, 1.9685, 0.0128, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9967, 2.0138, 1.9741, 0.0131, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0187, 2.0036, 1.9628, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0030, 2.0194, 1.9626, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0133, 1.9975, 1.9739, 0.0130, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0079, 2.0083, 1.9683, 0.0131, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0083, 2.0087, 1.9681, 0.0126, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0030, 2.0195, 1.9625, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0133, 1.9975, 1.9739, 0.0130, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0028, 2.0193, 1.9626, 0.0129, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0135, 1.9978, 1.9738, 0.0127, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0145, 2.0135, 1.9573, 0.0124, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0027, 2.0017, 1.9800, 0.0132, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0092, 2.0082, 1.9678, 0.0125, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0088, 2.0078, 1.9680, 0.0130, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0200, 2.0030, 1.9622, 0.0126, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9980, 2.0132, 1.9735, 0.0130, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0041, 2.0186, 1.9621, 0.0129, 0.0024], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0147, 1.9971, 1.9733, 0.0126, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0152, 1.9961, 1.9738, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0046, 2.0177, 1.9626, 0.0128, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0158, 2.0120, 1.9572, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0045, 2.0007, 1.9797, 0.0128, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0042, 2.0003, 1.9803, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0156, 2.0117, 1.9578, 0.0126, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0044, 2.0167, 1.9638, 0.0128, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0151, 1.9950, 1.9750, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0154, 1.9945, 1.9753, 0.0126, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0047, 2.0161, 1.9641, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0046, 1.9986, 1.9814, 0.0131, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0163, 2.0103, 1.9588, 0.0123, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0108, 2.0048, 1.9692, 0.0128, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0109, 2.0049, 1.9693, 0.0127, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0108, 2.0048, 1.9693, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0109, 2.0049, 1.9693, 0.0127, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0218, 1.9998, 1.9637, 0.0125, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9999, 2.0100, 1.9749, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0171, 2.0106, 1.9578, 0.0123, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0054, 1.9988, 1.9804, 0.0131, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0065, 2.0161, 1.9627, 0.0125, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0167, 1.9941, 1.9740, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0171, 2.0113, 1.9568, 0.0125, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0058, 1.9999, 1.9793, 0.0128, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0169, 2.0112, 1.9571, 0.0125, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0056, 1.9998, 1.9796, 0.0128, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0003, 2.0107, 1.9743, 0.0126, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0218, 2.0000, 1.9631, 0.0128, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0048, 2.0165, 1.9636, 0.0128, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0154, 1.9950, 1.9748, 0.0125, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0164, 2.0108, 1.9583, 0.0123, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0047, 1.9991, 1.9809, 0.0130, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0051, 1.9995, 1.9801, 0.0130, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0168, 2.0112, 1.9575, 0.0122, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0055, 1.9999, 1.9793, 0.0130, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0172, 2.0117, 1.9568, 0.0122, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0119, 2.0064, 1.9673, 0.0123, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0115, 2.0059, 1.9674, 0.0129, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0169, 1.9951, 1.9730, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0067, 2.0171, 1.9617, 0.0123, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0118, 2.0068, 1.9671, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0113, 2.0064, 1.9672, 0.0128, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0065, 2.0175, 1.9614, 0.0123, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0167, 1.9956, 1.9728, 0.0126, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0117, 2.0069, 1.9670, 0.0122, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0113, 2.0065, 1.9671, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0008, 2.0121, 1.9726, 0.0124, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0222, 2.0014, 1.9615, 0.0126, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0157, 1.9963, 1.9733, 0.0126, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0054, 2.0181, 1.9619, 0.0123, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0049, 2.0017, 1.9787, 0.0125, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0162, 2.0130, 1.9563, 0.0124, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0104, 2.0072, 1.9681, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0100, 2.0068, 1.9682, 0.0128, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0044, 2.0012, 1.9794, 0.0128, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0161, 2.0129, 1.9568, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0162, 2.0131, 1.9562, 0.0123, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0050, 2.0018, 1.9786, 0.0125, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0212, 2.0020, 1.9625, 0.0122, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9993, 2.0122, 1.9737, 0.0126, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0105, 2.0069, 1.9679, 0.0124, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0106, 2.0070, 1.9679, 0.0123, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0108, 2.0071, 1.9679, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0104, 2.0067, 1.9680, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0159, 1.9962, 1.9735, 0.0123, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0053, 2.0177, 1.9624, 0.0124, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0165, 2.0120, 1.9570, 0.0123, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0053, 2.0007, 1.9794, 0.0124, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9998, 2.0114, 1.9744, 0.0123, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0213, 2.0008, 1.9633, 0.0125, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0098, 2.0068, 1.9693, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0094, 2.0063, 1.9694, 0.0127, 0.0023], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0205, 2.0015, 1.9637, 0.0122, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9987, 2.0117, 1.9750, 0.0125, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0148, 1.9956, 1.9750, 0.0125, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0046, 2.0175, 1.9637, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0153, 2.0128, 1.9578, 0.0119, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0037, 2.0011, 1.9803, 0.0127, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0207, 2.0022, 1.9627, 0.0121, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9989, 2.0125, 1.9740, 0.0124, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0205, 2.0020, 1.9628, 0.0124, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9991, 2.0127, 1.9740, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0091, 2.0080, 1.9688, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0087, 2.0076, 1.9689, 0.0126, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0034, 2.0022, 1.9800, 0.0123, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0146, 2.0135, 1.9576, 0.0122, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0143, 2.0132, 1.9582, 0.0122, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0031, 2.0019, 1.9806, 0.0123, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0082, 2.0070, 1.9701, 0.0125, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0086, 2.0074, 1.9700, 0.0120, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0028, 2.0016, 1.9811, 0.0123, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0141, 2.0129, 1.9588, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0190, 2.0019, 1.9647, 0.0123, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9975, 2.0124, 1.9758, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0077, 2.0074, 1.9706, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0077, 2.0074, 1.9706, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0024, 2.0181, 1.9651, 0.0123, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0130, 1.9966, 1.9761, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0029, 2.0177, 1.9653, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0131, 1.9959, 1.9765, 0.0124, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0185, 2.0020, 1.9652, 0.0123, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9970, 2.0125, 1.9762, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0125, 1.9968, 1.9766, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0019, 2.0182, 1.9654, 0.0123, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0020, 2.0011, 1.9826, 0.0123, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0132, 2.0123, 1.9602, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0075, 2.0066, 1.9719, 0.0119, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0072, 2.0062, 1.9720, 0.0124, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0127, 1.9957, 1.9775, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0021, 2.0171, 1.9664, 0.0123, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0078, 2.0056, 1.9724, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0078, 2.0056, 1.9724, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0020, 1.9998, 1.9836, 0.0125, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0136, 2.0114, 1.9611, 0.0118, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0082, 2.0060, 1.9718, 0.0119, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0079, 2.0056, 1.9719, 0.0124, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0025, 2.0003, 1.9830, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0137, 2.0115, 1.9607, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0129, 1.9946, 1.9780, 0.0123, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0027, 2.0165, 1.9668, 0.0119, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9969, 2.0113, 1.9777, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0183, 2.0007, 1.9667, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0019, 2.0172, 1.9668, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0122, 1.9954, 1.9781, 0.0123, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0070, 2.0064, 1.9724, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0070, 2.0064, 1.9724, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9961, 2.0116, 1.9780, 0.0123, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0178, 2.0013, 1.9668, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0015, 2.0008, 1.9834, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0127, 2.0120, 1.9612, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0069, 2.0062, 1.9725, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0070, 2.0063, 1.9726, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0068, 2.0061, 1.9726, 0.0124, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0072, 2.0065, 1.9725, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9962, 2.0116, 1.9781, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0177, 2.0010, 1.9670, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0013, 2.0174, 1.9672, 0.0119, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0116, 1.9957, 1.9785, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0066, 2.0069, 1.9727, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0062, 2.0065, 1.9728, 0.0123, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0122, 2.0125, 1.9615, 0.0117, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0007, 2.0009, 1.9839, 0.0124, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0123, 2.0126, 1.9611, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0011, 2.0014, 1.9834, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0064, 2.0067, 1.9727, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0064, 2.0067, 1.9727, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0118, 1.9960, 1.9783, 0.0119, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0011, 2.0173, 1.9672, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9961, 2.0112, 1.9787, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0175, 2.0006, 1.9677, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0114, 1.9952, 1.9791, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0012, 2.0170, 1.9679, 0.0119, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0062, 2.0062, 1.9734, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0063, 2.0063, 1.9734, 0.0120, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9953, 2.0114, 1.9790, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0171, 2.0012, 1.9678, 0.0119, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0008, 2.0006, 1.9844, 0.0121, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0119, 2.0118, 1.9622, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0059, 2.0058, 1.9738, 0.0123, 0.0022], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0063e+00, 2.0062e+00, 1.9737e+00, 1.1754e-02, 1.9922e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0168, 2.0007, 1.9683, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9954e+00, 2.0113e+00, 1.9793e+00, 1.1902e-02, 2.0106e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0054, 2.0064, 1.9742, 0.0120, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0053, 2.0064, 1.9742, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0106, 1.9957, 1.9797, 0.0119, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0001, 2.0171, 1.9687, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0005, 2.0167, 1.9689, 0.0119, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0107, 1.9950, 1.9801, 0.0121, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0005, 2.0168, 1.9689, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0107, 1.9951, 1.9800, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0162, 2.0013, 1.9686, 0.0118, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9945, 2.0115, 1.9798, 0.0121, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0106, 1.9954, 1.9797, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0004, 2.0172, 1.9686, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9998, 2.0012, 1.9850, 0.0121, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0109, 2.0123, 1.9628, 0.0119, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9995, 2.0009, 1.9854, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0107, 2.0121, 1.9633, 0.0119, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9998, 2.0171, 1.9690, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0103, 1.9957, 1.9800, 0.0119, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0000, 2.0165, 1.9693, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0106, 1.9951, 1.9803, 0.0119, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0107, 1.9944, 1.9806, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0005, 2.0162, 1.9695, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0105, 1.9949, 1.9805, 0.0121, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0002, 2.0166, 1.9693, 0.0118, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0055e+00, 2.0061e+00, 1.9747e+00, 1.1686e-02, 1.9729e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0051, 2.0057, 1.9748, 0.0123, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9997, 2.0003, 1.9858, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0109, 2.0115, 1.9637, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0052, 2.0058, 1.9749, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0053e+00, 2.0059e+00, 1.9749e+00, 1.1896e-02, 2.0049e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0109, 2.0115, 1.9638, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9997, 2.0003, 1.9859, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9996, 2.0002, 1.9861, 0.0120, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0108, 2.0114, 1.9639, 0.0119, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0156, 2.0003, 1.9699, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9943e+00, 2.0109e+00, 1.9810e+00, 1.1838e-02, 1.9896e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0041, 2.0058, 1.9759, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0044e+00, 2.0061e+00, 1.9758e+00, 1.1694e-02, 1.9990e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9990, 2.0166, 1.9704, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0096, 1.9953, 1.9813, 0.0119, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9989, 1.9999, 1.9871, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0101, 2.0111, 1.9650, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0100, 2.0110, 1.9651, 0.0118, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9989, 1.9999, 1.9872, 0.0120, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0094, 1.9944, 1.9821, 0.0121, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9992, 2.0160, 1.9710, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9933, 2.0105, 1.9821, 0.0121, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0150, 2.0003, 1.9709, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0097, 1.9946, 1.9819, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9991, 2.0159, 1.9709, 0.0120, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0154, 1.9997, 1.9711, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9937, 2.0099, 1.9822, 0.0120, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0103, 2.0103, 1.9655, 0.0118, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9992, 1.9992, 1.9876, 0.0120, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0102, 2.0101, 1.9659, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9990, 1.9990, 1.9879, 0.0120, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0097, 1.9936, 1.9826, 0.0120, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9994, 2.0153, 1.9714, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0045, 2.0047, 1.9769, 0.0119, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0045, 2.0047, 1.9769, 0.0119, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0102, 2.0104, 1.9658, 0.0116, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9988, 1.9990, 1.9880, 0.0122, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9941, 2.0103, 1.9818, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0154, 1.9997, 1.9709, 0.0120, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9934, 2.0104, 1.9822, 0.0120, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0151, 2.0001, 1.9710, 0.0117, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9936, 2.0102, 1.9821, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0153e+00, 2.0000e+00, 1.9710e+00, 1.1706e-02, 2.0058e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0106e+00, 2.0107e+00, 1.9651e+00, 1.1523e-02, 1.9774e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9991, 1.9992, 1.9873, 0.0122, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0109, 2.0110, 1.9644, 0.0117, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9998, 1.9998, 1.9864, 0.0120, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0104, 1.9944, 1.9811, 0.0120, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0002e+00, 2.0161e+00, 1.9700e+00, 1.1674e-02, 2.0007e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0049, 2.0055, 1.9754, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0053e+00, 2.0059e+00, 1.9753e+00, 1.1568e-02, 1.9466e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0107e+00, 2.0113e+00, 1.9643e+00, 1.1698e-02, 2.0044e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9995, 2.0002, 1.9863, 0.0119, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0158e+00, 2.0006e+00, 1.9699e+00, 1.1639e-02, 1.9912e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9941, 2.0108, 1.9810, 0.0120, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0107e+00, 1.9948e+00, 1.9808e+00, 1.1709e-02, 1.9639e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0002, 2.0161, 1.9698, 0.0119, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0060e+00, 2.0049e+00, 1.9756e+00, 1.1526e-02, 1.9336e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0056, 2.0045, 1.9757, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0058, 2.0047, 1.9756, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0059e+00, 2.0048e+00, 1.9757e+00, 1.1733e-02, 1.9649e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0001, 1.9990, 1.9867, 0.0121, 0.0021], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0116e+00, 2.0105e+00, 1.9645e+00, 1.1421e-02, 1.9500e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0061, 2.0050, 1.9749, 0.0120, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0064e+00, 2.0053e+00, 1.9748e+00, 1.1511e-02, 1.9598e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0063e+00, 2.0052e+00, 1.9748e+00, 1.1727e-02, 1.9969e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0063e+00, 2.0052e+00, 1.9748e+00, 1.1727e-02, 1.9969e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0114, 1.9943, 1.9804, 0.0119, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0012e+00, 2.0160e+00, 1.9693e+00, 1.1551e-02, 1.9697e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0010e+00, 2.0164e+00, 1.9691e+00, 1.1545e-02, 1.9687e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0112, 1.9947, 1.9802, 0.0119, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0115, 2.0115, 1.9634, 0.0116, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0004e+00, 2.0004e+00, 1.9854e+00, 1.1791e-02, 1.9686e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0004, 2.0163, 1.9694, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0110e+00, 1.9951e+00, 1.9804e+00, 1.1617e-02, 1.9409e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0059, 2.0048, 1.9753, 0.0119, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0062e+00, 2.0052e+00, 1.9752e+00, 1.1476e-02, 1.9500e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0061e+00, 2.0050e+00, 1.9752e+00, 1.1691e-02, 1.9869e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0061e+00, 2.0050e+00, 1.9752e+00, 1.1691e-02, 1.9869e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0061e+00, 2.0050e+00, 1.9752e+00, 1.1691e-02, 1.9869e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0061e+00, 2.0050e+00, 1.9752e+00, 1.1691e-02, 1.9869e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0006e+00, 1.9995e+00, 1.9862e+00, 1.1767e-02, 1.9607e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0116, 2.0106, 1.9642, 0.0116, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0112e+00, 1.9941e+00, 1.9811e+00, 1.1594e-02, 1.9331e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0006, 2.0154, 1.9702, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0115e+00, 1.9934e+00, 1.9815e+00, 1.1627e-02, 1.9690e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0010e+00, 2.0147e+00, 1.9706e+00, 1.1747e-02, 1.9956e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0122e+00, 2.0094e+00, 1.9651e+00, 1.1376e-02, 1.9676e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0008e+00, 1.9979e+00, 1.9873e+00, 1.2001e-02, 1.9958e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0067e+00, 2.0039e+00, 1.9757e+00, 1.1669e-02, 1.9811e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0067e+00, 2.0039e+00, 1.9757e+00, 1.1669e-02, 1.9811e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0067, 2.0039, 1.9757, 0.0117, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0068e+00, 2.0039e+00, 1.9757e+00, 1.1629e-02, 1.9414e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0173, 1.9986, 1.9702, 0.0118, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([1.9961e+00, 2.0092e+00, 1.9812e+00, 1.1569e-02, 1.9275e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0111e+00, 1.9935e+00, 1.9817e+00, 1.1798e-02, 1.9633e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0009e+00, 2.0151e+00, 1.9706e+00, 1.1526e-02, 1.9892e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0002e+00, 1.9987e+00, 1.9871e+00, 1.1975e-02, 1.9905e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0116e+00, 2.0102e+00, 1.9649e+00, 1.1352e-02, 1.9624e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0060, 2.0045, 1.9756, 0.0119, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0063e+00, 2.0049e+00, 1.9754e+00, 1.1411e-02, 1.9360e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0118e+00, 2.0103e+00, 1.9645e+00, 1.1510e-02, 1.9588e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0007e+00, 1.9992e+00, 1.9864e+00, 1.1741e-02, 1.9863e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0010e+00, 2.0154e+00, 1.9701e+00, 1.1493e-02, 1.9856e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0113e+00, 1.9938e+00, 1.9812e+00, 1.1763e-02, 1.9598e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0008, 2.0154, 1.9701, 0.0117, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0114e+00, 1.9942e+00, 1.9810e+00, 1.1526e-02, 1.9205e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0062, 2.0039, 1.9760, 0.0119, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0066e+00, 2.0043e+00, 1.9758e+00, 1.1386e-02, 1.9297e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9958e+00, 2.0094e+00, 1.9814e+00, 1.1540e-02, 1.9530e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0170e+00, 1.9989e+00, 1.9705e+00, 1.1659e-02, 1.9792e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0167e+00, 1.9993e+00, 1.9706e+00, 1.1463e-02, 1.9783e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9951e+00, 2.0095e+00, 1.9817e+00, 1.1732e-02, 1.9526e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0010e+00, 2.0151e+00, 1.9706e+00, 1.1422e-02, 1.9389e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0111e+00, 1.9935e+00, 1.9816e+00, 1.1771e-02, 1.9925e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0111e+00, 1.9940e+00, 1.9814e+00, 1.1529e-02, 1.9515e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0006e+00, 2.0153e+00, 1.9705e+00, 1.1648e-02, 1.9777e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0060e+00, 2.0042e+00, 1.9761e+00, 1.1627e-02, 2.0041e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0061e+00, 2.0043e+00, 1.9762e+00, 1.1547e-02, 1.9248e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0010e+00, 2.0150e+00, 1.9706e+00, 1.1452e-02, 1.9760e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0112e+00, 1.9934e+00, 1.9817e+00, 1.1721e-02, 1.9502e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0062e+00, 2.0046e+00, 1.9760e+00, 1.1352e-02, 1.9238e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0058e+00, 2.0042e+00, 1.9761e+00, 1.1820e-02, 2.0036e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0008e+00, 2.0150e+00, 1.9706e+00, 1.1665e-02, 2.0134e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0113e+00, 1.9938e+00, 1.9815e+00, 1.1466e-02, 1.9081e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0064e+00, 2.0037e+00, 1.9764e+00, 1.1519e-02, 1.9176e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0063e+00, 2.0037e+00, 1.9764e+00, 1.1599e-02, 1.9965e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0121e+00, 2.0094e+00, 1.9653e+00, 1.1253e-02, 1.9419e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0007e+00, 1.9980e+00, 1.9874e+00, 1.1870e-02, 1.9696e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0066e+00, 2.0040e+00, 1.9759e+00, 1.1543e-02, 1.9551e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0066e+00, 2.0040e+00, 1.9759e+00, 1.1543e-02, 1.9551e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0172e+00, 1.9987e+00, 1.9704e+00, 1.1642e-02, 2.0082e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9960e+00, 2.0093e+00, 1.9814e+00, 1.1445e-02, 1.9033e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0004e+00, 1.9988e+00, 1.9872e+00, 1.1611e-02, 1.9257e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0114e+00, 2.0099e+00, 1.9653e+00, 1.1461e-02, 1.9773e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0057e+00, 2.0042e+00, 1.9766e+00, 1.1538e-02, 1.9505e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0057e+00, 2.0042e+00, 1.9766e+00, 1.1538e-02, 1.9505e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0114e+00, 2.0099e+00, 1.9656e+00, 1.1196e-02, 1.8981e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0000, 1.9985, 1.9876, 0.0119, 0.0020], dtype=torch.float64)
每个节点平均光子数为: tensor([2.0167e+00, 1.9993e+00, 1.9704e+00, 1.1613e-02, 1.9997e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9955e+00, 2.0099e+00, 1.9813e+00, 1.1416e-02, 1.8952e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0054e+00, 2.0050e+00, 1.9763e+00, 1.1468e-02, 1.9044e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0054e+00, 2.0049e+00, 1.9762e+00, 1.1547e-02, 1.9828e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0161e+00, 1.9999e+00, 1.9707e+00, 1.1373e-02, 1.9550e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9946e+00, 2.0101e+00, 1.9818e+00, 1.1641e-02, 1.9296e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0161e+00, 1.9997e+00, 1.9708e+00, 1.1563e-02, 1.9554e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9949e+00, 2.0101e+00, 1.9816e+00, 1.1446e-02, 1.9295e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0101e+00, 1.9943e+00, 1.9820e+00, 1.1637e-02, 1.9292e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9999e+00, 2.0158e+00, 1.9709e+00, 1.1369e-02, 1.9545e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0157e+00, 2.0002e+00, 1.9709e+00, 1.1329e-02, 1.9157e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9941e+00, 2.0103e+00, 1.9819e+00, 1.1674e-02, 1.9686e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0055e+00, 2.0052e+00, 1.9761e+00, 1.1265e-02, 1.9021e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0052e+00, 2.0049e+00, 1.9762e+00, 1.1728e-02, 1.9809e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0001e+00, 2.0157e+00, 1.9707e+00, 1.1535e-02, 1.9509e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0106e+00, 1.9944e+00, 1.9816e+00, 1.1418e-02, 1.9251e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0003e+00, 2.0152e+00, 1.9709e+00, 1.1572e-02, 1.9900e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0109e+00, 1.9940e+00, 1.9819e+00, 1.1376e-02, 1.8861e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0165e+00, 1.9987e+00, 1.9713e+00, 1.1526e-02, 1.9469e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9953e+00, 2.0092e+00, 1.9822e+00, 1.1409e-02, 1.9211e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9947e+00, 2.0093e+00, 1.9825e+00, 1.1599e-02, 1.9208e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0162e+00, 1.9991e+00, 1.9715e+00, 1.1333e-02, 1.9461e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0113e+00, 2.0098e+00, 1.9659e+00, 1.1123e-02, 1.8816e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9999e+00, 1.9984e+00, 1.9879e+00, 1.1812e-02, 1.9869e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0111e+00, 1.9937e+00, 1.9817e+00, 1.1612e-02, 1.9563e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0009e+00, 2.0153e+00, 1.9707e+00, 1.1268e-02, 1.9038e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0056e+00, 2.0047e+00, 1.9760e+00, 1.1666e-02, 1.9685e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0060e+00, 2.0051e+00, 1.9759e+00, 1.1205e-02, 1.8903e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9950e+00, 2.0100e+00, 1.9815e+00, 1.1549e-02, 1.9134e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0165e+00, 1.9998e+00, 1.9704e+00, 1.1284e-02, 1.9385e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0164e+00, 1.9996e+00, 1.9705e+00, 1.1512e-02, 1.9783e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9953e+00, 2.0101e+00, 1.9814e+00, 1.1317e-02, 1.8751e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9997e+00, 1.9997e+00, 1.9872e+00, 1.1482e-02, 1.8973e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0107e+00, 2.0107e+00, 1.9653e+00, 1.1333e-02, 1.9480e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9998e+00, 2.0156e+00, 1.9712e+00, 1.1507e-02, 1.9739e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0103e+00, 1.9944e+00, 1.9821e+00, 1.1313e-02, 1.8709e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0054e+00, 2.0044e+00, 1.9770e+00, 1.1365e-02, 1.8802e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0053e+00, 2.0043e+00, 1.9770e+00, 1.1443e-02, 1.9574e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0161e+00, 1.9993e+00, 1.9715e+00, 1.1271e-02, 1.9300e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9946e+00, 2.0095e+00, 1.9825e+00, 1.1536e-02, 1.9050e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0160e+00, 1.9991e+00, 1.9715e+00, 1.1459e-02, 1.9304e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9948e+00, 2.0095e+00, 1.9824e+00, 1.1343e-02, 1.9049e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0048e+00, 2.0043e+00, 1.9772e+00, 1.1670e-02, 1.9961e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0052e+00, 2.0047e+00, 1.9771e+00, 1.1134e-02, 1.8413e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0156e+00, 1.9993e+00, 1.9717e+00, 1.1469e-02, 1.9611e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9944e+00, 2.0098e+00, 1.9826e+00, 1.1276e-02, 1.8589e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0099e+00, 2.0104e+00, 1.9666e+00, 1.1253e-02, 1.8929e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9988e+00, 1.9994e+00, 1.9884e+00, 1.1478e-02, 1.9193e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9991e+00, 2.0154e+00, 1.9722e+00, 1.1463e-02, 1.9578e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0096e+00, 1.9942e+00, 1.9831e+00, 1.1270e-02, 1.8558e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0098e+00, 1.9934e+00, 1.9835e+00, 1.1493e-02, 1.8904e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9996e+00, 2.0149e+00, 1.9724e+00, 1.1229e-02, 1.9153e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9989e+00, 1.9986e+00, 1.9888e+00, 1.1703e-02, 1.9554e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0103e+00, 2.0100e+00, 1.9668e+00, 1.1022e-02, 1.8520e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9944e+00, 2.0100e+00, 1.9826e+00, 1.1238e-02, 1.8492e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0155e+00, 1.9995e+00, 1.9717e+00, 1.1431e-02, 1.9508e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9988e+00, 1.9996e+00, 1.9883e+00, 1.1402e-02, 1.8712e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0098e+00, 2.0106e+00, 1.9665e+00, 1.1254e-02, 1.9212e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0096e+00, 2.0104e+00, 1.9668e+00, 1.1257e-02, 1.9205e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9987e+00, 1.9994e+00, 1.9887e+00, 1.1404e-02, 1.8705e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9987e+00, 2.0153e+00, 1.9727e+00, 1.1390e-02, 1.9072e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0092e+00, 1.9941e+00, 1.9835e+00, 1.1274e-02, 1.8820e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0149e+00, 1.9992e+00, 1.9728e+00, 1.1161e-02, 1.8685e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9934e+00, 2.0094e+00, 1.9838e+00, 1.1501e-02, 1.9199e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0046e+00, 2.0041e+00, 1.9781e+00, 1.1286e-02, 1.8556e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0045e+00, 2.0041e+00, 1.9781e+00, 1.1362e-02, 1.9316e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0047e+00, 2.0043e+00, 1.9780e+00, 1.1098e-02, 1.8545e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0044e+00, 2.0039e+00, 1.9782e+00, 1.1553e-02, 1.9310e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9991e+00, 1.9986e+00, 1.9890e+00, 1.1379e-02, 1.8647e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0101e+00, 2.0096e+00, 1.9671e+00, 1.1232e-02, 1.9144e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0046e+00, 2.0041e+00, 1.9783e+00, 1.1083e-02, 1.8510e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0043e+00, 2.0038e+00, 1.9785e+00, 1.1537e-02, 1.9273e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9937e+00, 2.0091e+00, 1.9839e+00, 1.1422e-02, 1.8735e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0151e+00, 1.9989e+00, 1.9729e+00, 1.1160e-02, 1.8981e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9938e+00, 2.0090e+00, 1.9839e+00, 1.1420e-02, 1.8737e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0153e+00, 1.9988e+00, 1.9728e+00, 1.1158e-02, 1.8983e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0100e+00, 1.9932e+00, 1.9837e+00, 1.1229e-02, 1.8736e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9995e+00, 2.0144e+00, 1.9729e+00, 1.1344e-02, 1.8987e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0104e+00, 2.0089e+00, 1.9675e+00, 1.1212e-02, 1.9106e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9995e+00, 1.9980e+00, 1.9894e+00, 1.1358e-02, 1.8610e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9996e+00, 2.0138e+00, 1.9734e+00, 1.1344e-02, 1.8975e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0100e+00, 1.9927e+00, 1.9842e+00, 1.1229e-02, 1.8724e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9999e+00, 2.0136e+00, 1.9735e+00, 1.1117e-02, 1.8591e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0101e+00, 1.9921e+00, 1.9845e+00, 1.1454e-02, 1.9102e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9940e+00, 2.0084e+00, 1.9843e+00, 1.1410e-02, 1.8713e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0155e+00, 1.9982e+00, 1.9733e+00, 1.1148e-02, 1.8958e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0104e+00, 2.0088e+00, 1.9678e+00, 1.1165e-02, 1.8707e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9994e+00, 1.9977e+00, 1.9895e+00, 1.1388e-02, 1.8967e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0100e+00, 1.9924e+00, 1.9843e+00, 1.1408e-02, 1.8715e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9998e+00, 2.0139e+00, 1.9733e+00, 1.1147e-02, 1.8960e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9992e+00, 1.9977e+00, 1.9896e+00, 1.1578e-02, 1.8972e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0105e+00, 2.0090e+00, 1.9676e+00, 1.0979e-02, 1.8707e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0053e+00, 2.0038e+00, 1.9781e+00, 1.1000e-02, 1.8090e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0049e+00, 2.0034e+00, 1.9782e+00, 1.1527e-02, 1.9607e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0000e+00, 2.0143e+00, 1.9726e+00, 1.1105e-02, 1.8881e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0102e+00, 1.9929e+00, 1.9836e+00, 1.1365e-02, 1.8637e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9996e+00, 1.9984e+00, 1.9889e+00, 1.1306e-02, 1.8515e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0105e+00, 2.0093e+00, 1.9671e+00, 1.1160e-02, 1.9009e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9998e+00, 2.0143e+00, 1.9729e+00, 1.1105e-02, 1.8876e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0100e+00, 1.9929e+00, 1.9839e+00, 1.1366e-02, 1.8632e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9998e+00, 2.0145e+00, 1.9728e+00, 1.1066e-02, 1.8503e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0099e+00, 1.9930e+00, 1.9838e+00, 1.1402e-02, 1.9011e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0153e+00, 1.9991e+00, 1.9726e+00, 1.1097e-02, 1.8869e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9939e+00, 2.0093e+00, 1.9836e+00, 1.1358e-02, 1.8625e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9942e+00, 2.0094e+00, 1.9834e+00, 1.1168e-02, 1.8624e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0153e+00, 1.9989e+00, 1.9726e+00, 1.1282e-02, 1.8873e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9936e+00, 2.0094e+00, 1.9837e+00, 1.1391e-02, 1.8998e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0150e+00, 1.9993e+00, 1.9728e+00, 1.1056e-02, 1.8491e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0154e+00, 1.9991e+00, 1.9726e+00, 1.1050e-02, 1.8482e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9939e+00, 2.0093e+00, 1.9835e+00, 1.1386e-02, 1.8989e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9994e+00, 1.9984e+00, 1.9888e+00, 1.1551e-02, 1.9239e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0107e+00, 2.0097e+00, 1.9669e+00, 1.0880e-02, 1.8225e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0053e+00, 2.0042e+00, 1.9771e+00, 1.1454e-02, 1.9458e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0056e+00, 2.0046e+00, 1.9770e+00, 1.0930e-02, 1.7955e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0057e+00, 2.0046e+00, 1.9770e+00, 1.0905e-02, 1.7886e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0053e+00, 2.0042e+00, 1.9771e+00, 1.1428e-02, 1.9383e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0055e+00, 2.0045e+00, 1.9771e+00, 1.1101e-02, 1.8180e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0055e+00, 2.0044e+00, 1.9771e+00, 1.1176e-02, 1.8923e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9949e+00, 2.0097e+00, 1.9825e+00, 1.1044e-02, 1.8051e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0160e+00, 1.9992e+00, 1.9717e+00, 1.1232e-02, 1.9040e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0048e+00, 2.0048e+00, 1.9775e+00, 1.1095e-02, 1.8141e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0048e+00, 2.0047e+00, 1.9774e+00, 1.1169e-02, 1.8883e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9997e+00, 2.0154e+00, 1.9720e+00, 1.1002e-02, 1.8620e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0099e+00, 1.9940e+00, 1.9830e+00, 1.1261e-02, 1.8380e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0102e+00, 2.0104e+00, 1.9664e+00, 1.1057e-02, 1.8746e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9993e+00, 1.9994e+00, 1.9882e+00, 1.1202e-02, 1.8260e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9989e+00, 1.9991e+00, 1.9886e+00, 1.1468e-02, 1.9001e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0103e+00, 2.0104e+00, 1.9667e+00, 1.0803e-02, 1.8001e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0049e+00, 2.0051e+00, 1.9769e+00, 1.1147e-02, 1.8835e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0050e+00, 2.0051e+00, 1.9770e+00, 1.1072e-02, 1.8095e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9999e+00, 2.0158e+00, 1.9715e+00, 1.0943e-02, 1.8205e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0100e+00, 1.9944e+00, 1.9825e+00, 1.1275e-02, 1.8704e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0153e+00, 2.0003e+00, 1.9714e+00, 1.1159e-02, 1.8568e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9942e+00, 2.0107e+00, 1.9822e+00, 1.1047e-02, 1.8323e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0096e+00, 1.9951e+00, 1.9824e+00, 1.1008e-02, 1.7955e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9992e+00, 2.0162e+00, 1.9716e+00, 1.1195e-02, 1.8938e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0104e+00, 2.0107e+00, 1.9664e+00, 1.0804e-02, 1.8280e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9991e+00, 1.9994e+00, 1.9883e+00, 1.1393e-02, 1.8538e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0100e+00, 1.9945e+00, 1.9824e+00, 1.1211e-02, 1.8284e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9999e+00, 2.0159e+00, 1.9714e+00, 1.0954e-02, 1.8523e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9942e+00, 2.0104e+00, 1.9823e+00, 1.1247e-02, 1.8655e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0156e+00, 2.0003e+00, 1.9714e+00, 1.0916e-02, 1.8157e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0109e+00, 2.0108e+00, 1.9656e+00, 1.0785e-02, 1.8267e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9996e+00, 1.9996e+00, 1.9876e+00, 1.1373e-02, 1.8526e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9998e+00, 1.9998e+00, 1.9871e+00, 1.1398e-02, 1.8895e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0112e+00, 2.0111e+00, 1.9652e+00, 1.0737e-02, 1.7900e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0060e+00, 2.0059e+00, 1.9754e+00, 1.0824e-02, 1.7995e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0057e+00, 2.0056e+00, 1.9756e+00, 1.1265e-02, 1.8734e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0004e+00, 2.0003e+00, 1.9863e+00, 1.1135e-02, 1.8460e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0114e+00, 2.0113e+00, 1.9646e+00, 1.0918e-02, 1.8207e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0109e+00, 1.9950e+00, 1.9811e+00, 1.1156e-02, 1.8216e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0007e+00, 2.0164e+00, 1.9702e+00, 1.0901e-02, 1.8454e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0114e+00, 2.0115e+00, 1.9646e+00, 1.0702e-02, 1.7847e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0001e+00, 2.0002e+00, 1.9865e+00, 1.1360e-02, 1.8838e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0167e+00, 2.0011e+00, 1.9694e+00, 1.0880e-02, 1.8425e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9954e+00, 2.0112e+00, 1.9804e+00, 1.1135e-02, 1.8188e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0060e+00, 2.0059e+00, 1.9749e+00, 1.1266e-02, 1.9057e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0063e+00, 2.0063e+00, 1.9748e+00, 1.0752e-02, 1.7588e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0062e+00, 2.0061e+00, 1.9749e+00, 1.0982e-02, 1.8239e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0062e+00, 2.0061e+00, 1.9749e+00, 1.0982e-02, 1.8239e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0114e+00, 1.9956e+00, 1.9803e+00, 1.0890e-02, 1.7760e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0010e+00, 2.0166e+00, 1.9695e+00, 1.1074e-02, 1.8730e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0067e+00, 2.0056e+00, 1.9752e+00, 1.0759e-02, 1.7845e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0063e+00, 2.0053e+00, 1.9753e+00, 1.1197e-02, 1.8578e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0065e+00, 2.0055e+00, 1.9752e+00, 1.0960e-02, 1.8181e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0065e+00, 2.0055e+00, 1.9752e+00, 1.0960e-02, 1.8181e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0011e+00, 2.0000e+00, 1.9860e+00, 1.1068e-02, 1.8307e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0120e+00, 2.0110e+00, 1.9643e+00, 1.0852e-02, 1.8056e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0008e+00, 1.9998e+00, 1.9863e+00, 1.1293e-02, 1.8680e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0121e+00, 2.0111e+00, 1.9644e+00, 1.0639e-02, 1.7698e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0174e+00, 2.0007e+00, 1.9693e+00, 1.0780e-02, 1.7910e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([1.9961e+00, 2.0108e+00, 1.9802e+00, 1.1107e-02, 1.8401e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0014e+00, 1.9999e+00, 1.9855e+00, 1.1269e-02, 1.8644e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0127e+00, 2.0113e+00, 1.9636e+00, 1.0616e-02, 1.7664e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0076e+00, 2.0061e+00, 1.9739e+00, 1.0704e-02, 1.7760e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0072e+00, 2.0057e+00, 1.9740e+00, 1.1140e-02, 1.8488e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0022e+00, 2.0164e+00, 1.9686e+00, 1.0996e-02, 1.8581e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0126e+00, 1.9954e+00, 1.9794e+00, 1.0813e-02, 1.7619e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0026e+00, 2.0157e+00, 1.9689e+00, 1.0953e-02, 1.8183e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0129e+00, 1.9947e+00, 1.9797e+00, 1.0843e-02, 1.7944e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0029e+00, 2.0155e+00, 1.9690e+00, 1.0770e-02, 1.8176e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0130e+00, 1.9941e+00, 1.9800e+00, 1.1023e-02, 1.7942e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0025e+00, 1.9995e+00, 1.9853e+00, 1.0966e-02, 1.7825e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0134e+00, 2.0104e+00, 1.9635e+00, 1.0824e-02, 1.8297e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0079e+00, 2.0049e+00, 1.9748e+00, 1.0647e-02, 1.7343e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0075e+00, 2.0046e+00, 1.9749e+00, 1.1154e-02, 1.8789e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0132e+00, 2.0103e+00, 1.9639e+00, 1.0803e-02, 1.8221e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0023e+00, 1.9993e+00, 1.9857e+00, 1.0945e-02, 1.7751e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0074e+00, 2.0044e+00, 1.9753e+00, 1.1096e-02, 1.8342e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0077e+00, 2.0047e+00, 1.9752e+00, 1.0661e-02, 1.7619e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0128e+00, 1.9940e+00, 1.9807e+00, 1.0770e-02, 1.7480e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0023e+00, 2.0150e+00, 1.9698e+00, 1.0952e-02, 1.8434e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0080e+00, 2.0041e+00, 1.9755e+00, 1.0641e-02, 1.7566e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0077e+00, 2.0038e+00, 1.9756e+00, 1.1074e-02, 1.8286e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0027e+00, 2.0145e+00, 1.9702e+00, 1.0895e-02, 1.8015e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0131e+00, 1.9934e+00, 1.9810e+00, 1.0785e-02, 1.7779e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0026e+00, 1.9981e+00, 1.9866e+00, 1.0909e-02, 1.7660e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0135e+00, 2.0091e+00, 1.9649e+00, 1.0767e-02, 1.8127e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0023e+00, 1.9977e+00, 1.9870e+00, 1.1168e-02, 1.8373e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0135e+00, 2.0091e+00, 1.9652e+00, 1.0522e-02, 1.7409e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0080e+00, 2.0036e+00, 1.9756e+00, 1.1039e-02, 1.8219e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0084e+00, 2.0039e+00, 1.9754e+00, 1.0608e-02, 1.7502e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0082e+00, 2.0037e+00, 1.9755e+00, 1.0806e-02, 1.7831e-03],
dtype=torch.float64)
每个节点平均光子数为: tensor([2.0082e+00, 2.0037e+00, 1.9755e+00, 1.0806e-02, 1.7831e-03],
dtype=torch.float64)
每个“糖果”节点输出近似2个光子,而其余节点几乎没有输出光子,优化结果非常完美!
附录#
[1] Leonardo Banchi, Nicolás Quesada, and Juan Miguel Arrazola. Training Gaussian Boson Sampling Distributions. arXiv:2004.04770. 2020.