Я импортировал Dense из keras.layers.core. Когда я создаю новую модель
model = Sequential()
model.add(Dense(12, input_shape=(len(train_x[0]),), activation='relu'))
model.add(Dropout(0.5))
model.add(Dense(6, activation='relu'))
model.add(Dropout(0.5))
model.add(Dense(len(train_y[0]), activation='softmax'))
, возникает ошибка
AttributeError:('The following error happened while compiling the node',
DotModulo(A, s, m, A2, s2, m2), '\n',
"module 'numpy.core.multiarray' has no attribute '_get_ndarray_c_version'")
Я не понимаю, почему?