This commit is contained in:
AWieczarek 2024-05-06 19:48:49 +02:00
parent dfc28cbc9a
commit 9a77c82ebb

View File

@ -18,7 +18,8 @@ X_test_pad = tf.keras.preprocessing.sequence.pad_sequences(X_test_seq, maxlen=10
# Make predictions
predictions = model.predict(X_test_pad)
print(model.summary())
print(f'X_test_pad shape: {X_test_pad.shape}')
# Check the shape of the predictions
print(f'Predictions shape: {predictions.shape}')