ValueError: The last dimension of the inputs to `Dense` should be defined. Found `None`.
时间: 2023-09-14 19:10:58 浏览: 262
ValueError: Could not find a format to read the specified file in mode ‘i’
这个错误通常发生在使用Keras或TensorFlow等深度学习框架定义模型时。它意味着你在某个地方定义了一个Dense层,但是输入张量的最后一个维度没有被明确定义。你需要检查你的输入数据的形状,确保它们在传递给Dense层之前已经被正确地定义了。你可以使用函数如reshape()或者Flatten()来改变输入维度。此外,你也可以在定义Dense层时明确指定输入的形状,例如:Dense(units, input_shape=(None, n_features))。
阅读全文