错误实践
哈哈哈哈哈滚
嘟嘟噜~~~~~~
展开
-
# 错误实践
LBFGS优化器显示IndexError: list index out of range Process finished with exit code 1原创 2024-08-21 11:46:47 · 312 阅读 · 0 评论 -
# 错误实践
所有基于TensorFlow1的代码往TensorFlow2上迁移产生的错误,最省事的解决方法是安装TensorFlow1的虚拟环境,直接在1的环境下跑,改起来真的太烦了。在有tf.placeholder()的这行代码前面加上一行tf.compat.v1..disable_eager_execution()然后将代码正文中的所有newfig和savefig全部改为plt.newfig和plt.savefig。将tf.ConfigProto()改为tf.compat.v1.ConfigProto()原创 2023-09-18 17:20:10 · 541 阅读 · 1 评论 -
# 错误实践
跑python代码时发生错误TypeError: 'module' object is not callable。检查发现,需要将adam_v2改为adam_v2.Adam,即可完成。找到图中TypeError上方的那行对应的位置,即。原创 2023-09-18 15:48:37 · 70 阅读 · 0 评论 -
【榆钱】#错误实践
出现错误:ValueError: check_hostname requires server_hostname。原创 2023-07-17 09:56:51 · 50 阅读 · 0 评论 -
【榆钱】# 错误实践
AttributeError: module 'tensorflow' has no attribute 'Session'AttributeError: module 'tensorflow' has no attribute 'configProto'AttributeError: module 'tensorflow' has no attribute 'tf.set_random_seed'原创 2023-07-18 10:03:30 · 54 阅读 · 0 评论 -
【榆钱】#错误实践 安装pymysql时发生错误AttributeError: module 'pip' has no attribute 'main'
今天安装pymysql时发生了错误AttributeError: module 'pip' has no attribute 'main'解决方法如下:1.找到PyCharm 2017.1\helpers\packaging_tool.py2.打开packaging_tool.py,注意,最好用pycharm打开,因为这样可以直接定位到104行左右的位置3.找到104行,会看到两个...原创 2020-05-07 17:39:27 · 312 阅读 · 2 评论