09 2022 档案
摘要:F.read()和F.readlines(): 1 #Python读取txt 2 def Fread(): 3 print(' read by .read() ') 4 with open('test.txt', encoding='utf-8') as file: 5 content = file
阅读全文
摘要:一、学习能力,指在训练集上精度。 二、泛化能力,指在测试集上精度。 对于一个大型神经网络在一个大数据集上跑,LOSS持续不降,第一步先减小数据量,比方说只在单张图片上跑,观察每次LOSS下降情况,此时如果LOSS还是不下降说明网络没有学习能力,应该调整模型,一般是先把网络规模缩小,因为任何一个网络都
阅读全文
摘要:ValueError: Cannot load file containing pickled data when allow_pickle=False pickle 1 feature = np.load(feature_url, allow_pickle=True) OSError: Faile
阅读全文