keras ValueError: dimension of the inputs to `Dense` should be defined. Found `None`

  • 请注意此处特指在keras下出现该问题的情况
  • 该问题一般是在构建模型的过程中出现了数据尺寸相关的问题
  • 一般来说最合适的办法是调用模型的.output_shape方法,检查在哪一步的output_shape变成了包含两个或更多None

你可能感兴趣的:(python)