-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Confusion in variable names #171
Comments
Those are the very basic things my friend. You need to go through the understanding the mnist dataset. |
Thanks Wajihullah baig, Yes, you are right it was the basic query.
Error: Error in cnnbp (line 32) Error in cnntrain (line 17) Error in test_example_CNN (line 31) |
You should first understand the concepts of convolutional networks. Its too lengthy to explain here. Once you grasp the ideas, you will note that it is easy to follow code or write your own. I suggest you read about them from link/blogs/videos by andrej karpathy. |
Thanks I will check that.. Is it too lengthy to give answer of each question? |
You can add any sorts of layers - Just make sure you dont break the code. A ReLU is a good idea. |
Hello,
I have started learning about the deep learning, I have downloaded this toolbox.
To understand about the CNN I have started with the 'test_example_CNN' I am confused about these variables
train_x, test_x, train_y, test_y
why it is with 'x' and 'y'
Also what is
cnnsetup
?The text was updated successfully, but these errors were encountered: