-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Open
Labels
questionFurther information is requestedFurther information is requested
Description
Enter the chapter number
Chapter 3
Enter the page number
No response
What is the cell's number in the notebook
80
Enter the environment you are using to run the notebook
Jupyter on Windows
Question
Multioutput Classification
noise = np.random.randint(0, 100, (len(X_train), 784))
X_train_mod = X_train + noise
noise = np.random.randint(0, 100, (len(X_test), 784))
X_test_mod = X_test + noise
y_train_mod = X_train
y_test_mod = X_test
if take parameter 100 then end output is not clear.
Rather than 100 take as 1 ,then output is completely clear
noise = np.random.randint(0, 1, (len(X_train), 784))
X_train_mod = X_train + noise
noise = np.random.randint(0, 1, (len(X_test), 784))
X_test_mod = X_test + noise
y_train_mod = X_train
y_test_mod = X_test
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested

