1.OSError:[WinError 1455] 页面文件太小,无法完成操作。
问题解决方法:
寻找train代码中的num_work设置部分。设置变量default=0
2.RuntimeError: Failed to process string with tex because latex could not be found
解决方案:
修改部分代码
plt.rcParams.update({
"text.usetex": True,
"font.family": "sans-serif",
"font.sans-serif": ["Helvetica"]})
matplotlib.use("TkAgg")
"text.usetex": True -------> "text.usetex": False
plt.rcParams.update({
"text.usetex": False,
"font.family": "sans-serif",
"font.sans-serif": ["Helvetica"]})
matplotlib.use("TkAgg")