ظهور الخطأ ValueError: Input 0 of layer dense_19 is incompatible with the layer: expected axis -1 of input shape to have value 128 but received input with shape (4, 32) أثناء محاولة تدريب شبكة عصبية في Keeas
أقوم باستخدام keras مع ال Embedding على نموذج بسيط ولكن يظهر لدي الخطأ التالي:
inputx= np.random.randint(0,40,4)
model =Sequential()
model.add(layers.Embedding(input_dim=40, output_dim=32, input_length=4))
model.add(layers.Flatten())
model.add(layers.Dense(units=5, activation='sigmoid'))print(model(inputx))---------------------------------------------------------------------------------------ValueError:Input0 of layer dense_19 is incompatible with the layer: expected axis -1 of input shape to have value 128 but received input with shape (4,32)
السؤال
Meezo ML
أقوم باستخدام keras مع ال Embedding على نموذج بسيط ولكن يظهر لدي الخطأ التالي:
2 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.