摘要: model = tf.keras.models.Sequential 解决方法: 这个问题是没有导库进来解决方法:from tensorflow import keras TensorFlow 1.X 和 2.X差异很多,其中,导入包也会有很多差异。 对于已有的代码,通过他们导入的方式可以判别是 T 阅读全文
posted @ 2023-01-30 21:43 emanlee 阅读(1475) 评论(0) 推荐(0) 编辑
摘要: centos linux 统计文件行数和列数 centos linux 统计文件行数 wc -l filename centos linux 统计文件列数(列分隔符为空格或Tab) awk 'END{print NF}' filename centos linux 统计文件列数,指定列分隔符为逗号: 阅读全文
posted @ 2023-01-30 20:39 emanlee 阅读(768) 评论(0) 推荐(0) 编辑
摘要: AttributeError: module 'numpy' has no attribute 'object' 解决方案: pip uninstall numpy pip install numpy==1.23.4 Since version 1.24 of numpy, np.object is 阅读全文
posted @ 2023-01-30 12:21 emanlee 阅读(19460) 评论(0) 推荐(0) 编辑