From 9a77c82ebb4cb8068f1ee70915b4ce142067ca6d Mon Sep 17 00:00:00 2001 From: AWieczarek Date: Mon, 6 May 2024 19:48:49 +0200 Subject: [PATCH] IUM_06 --- IUM_05-predict.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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}')