This commit is contained in:
Yevhenii Poliakov 2023-05-14 22:24:01 +02:00
parent ea7ff238f7
commit 1ca016f489

View File

@ -75,9 +75,9 @@ 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("Data type of 'X_train':", X_train.dtypes)
print("Shape of 'X_train':", X_train.shape)
print("Data type of 'y_train':", y_train.dtype)
print("Data type of 'y_train':", y_train.dtypes)
print("Shape of 'y_train':", y_train.shape)
# Train the model