问题1:
在执行执行keras.utils.plot_model(model, ‘./vggnet.png’, show_shapes=True)报错
解决方案,控制台输入:
conda install pydotplus
conda install graphviz
问题2:
usage: nn_train.py [-h] -d DATASET -m MODEL -l LABEL_BIN -p PLOT
nn_train.py: error: the following arguments are required: -d/–dataset, -m/–model, -l/–label-bin, -p/–plot
解决方案:
问题3:
UserWarning: The lr
argument is deprecated, use learning_rate
instead.
super().init(name, **kwargs)
原因:这个警告是因为在使用 Keras 的优化器时,使用了 lr 参数来设置学习率,但是该参数已经被弃用了。现在应该使用 learning_rate 参数来设置学习率。
解决方案:
用learning_rate替代代码中的lr