Skip to content

[question] #190

@sam-x-specx

Description

@sam-x-specx

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

Image
Image

Metadata

Metadata

Assignees

Labels

questionFurther information is requested

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions