# Load CIFAR-10 dataset
= cifar10.load_data()
(x_train, y_train), (x_test, y_test)
# Normalize pixel values to the range [0, 1]
= x_train / 255.0, x_test / 255.0
x_train, x_test
# Convert class labels to one-hot encoding
= to_categorical(y_train, 10)
y_train_cat = to_categorical(y_test, 10) y_test_cat
NameError: name 'cifar10' is not defined