diff --git a/IUM_05-predict.py b/IUM_05-predict.py index 1d5b603..63b0a9f 100644 --- a/IUM_05-predict.py +++ b/IUM_05-predict.py @@ -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}')