Loading

摘要: Tensorflow 中的格式报错 “ TypeError: Value passed to parameter 'shape' has DataType float32 not in list of allowed values: int32, int64 ” 错误代码 n = x/4 temp 阅读全文
posted @ 2021-03-31 11:09 _yhwu 阅读(938) 评论(0) 推荐(0)
摘要: Python 3 版本中的缩进问题(TabError) 在运行程序报错时,如果遇到 TabError, 那么需要检查相应的代码行中是否存在缩进符Tab和空格混用的情况。 当缩进全部替换成 Tab 之后即可解决此问题。 注:缩进需统一,全 Tab 缩进,或者全 空格 缩进。 阅读全文
posted @ 2021-03-31 09:47 _yhwu 阅读(93) 评论(0) 推荐(0)