TensorFlow
摸鱼时刻
这个作者很懒,什么都没留下…
展开
-
【TensorFlow】No module named ‘tensorflow_core.keras‘
TensorFlow报错:ModuleNotFoundError: No module named ‘tensorflow_core.keras’猜测原因可能是自己根据需要才新安装的TensorFlow,和之前的一些依赖版本不匹配,才用重装大法解决问题pip install --force-reinstall tensorflow参考自:ModuleNotFoundError: No module named ‘tensorflow_core.keras’...原创 2020-10-13 10:51:21 · 2871 阅读 · 1 评论 -
【Tensorflow 学习笔记】placeholder
tf.placeholder(dtype, shape=None, name=None)TensorFlow中的占位符,用于传入外部数据。参数:dtype:数据类型。shape:数据的维度。默认为None,表示没有限制name:名称返回类型:TensorTensorFlow中加载图片的维度为[batch, height, width, channels]故placeholder的shape可写为[...原创 2018-07-14 10:24:54 · 17834 阅读 · 0 评论