From ea7ff238f7920bececa898e61bc9114b94495bf3 Mon Sep 17 00:00:00 2001 From: Yevhenii Poliakov Date: Sun, 14 May 2023 22:21:18 +0200 Subject: [PATCH] upd51 --- script5_1.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/script5_1.py b/script5_1.py index fefd653..39ff6e8 100644 --- a/script5_1.py +++ b/script5_1.py @@ -75,6 +75,11 @@ print("Data type of 'Rating' column:", y_train.dtype) print("First few rows of 'y_train':", y_train[:10]) +print("Data type of 'X_train':", X_train.dtype) +print("Shape of 'X_train':", X_train.shape) +print("Data type of 'y_train':", y_train.dtype) +print("Shape of 'y_train':", y_train.shape) + # Train the model model.fit(X_train, y_train, batch_size=64, epochs=10, validation_data=(X_test, y_test))