作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我运行 flowers_tf_lite.ipynb
脚本。
Link to flowers_tf_lite.ipynb script
得到KeyError: 'accuracy'
错误停止了程序。
我该如何解决此类错误?
acc = history.history['accuracy']
val_acc = history.history['val_accuracy']
loss = history.history['loss']
val_loss = history.history['val_loss']
plt.figure(figsize=(8, 8))
plt.subplot(2, 1, 1)
plt.plot(acc, label='Training Accuracy')
plt.plot(val_acc, label='Validation Accuracy')
plt.legend(loc='lower right')
plt.ylabel('Accuracy')
plt.ylim([min(plt.ylim()),1])
plt.title('Training and Validation Accuracy')
plt.subplot(2, 1, 2)
plt.plot(loss, label='Training Loss')
plt.plot(val_loss, label='Validation Loss')
plt.legend(loc='upper right')
plt.ylabel('Cross Entropy')
plt.ylim([0,1.0])
plt.title('Training and Validation Loss')
plt.xlabel('epoch')
plt.show()
最佳答案
模型编译后,精度度量被命名为“acc”和“val_acc”,您可以使用
model.metrics_names
['loss', 'acc', 'val_acc']
acc = history.history['acc']
val_acc = history.history['val_acc']
关于python - 运行flowers_tf_lite.ipynb时如何修复 ' KeyError: '精度''?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57782962/
我是一名优秀的程序员,十分优秀!