-
Notifications
You must be signed in to change notification settings - Fork 1
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
Overhaul exercise for 2024 course #11
Conversation
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review done and comments added at the end of the PR 😊
We will be working with a simple example which is a fun derivation on the MNIST dataset that you will have seen in previous exercises in this course. | ||
Unlike regular MNIST, our dataset is classified not by number, but by color! | ||
|
||
![CMNIST](assets/cmnist.png) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@adjavon I have a question regarding the image. You explained that the dataset classifies by color, however, the different classes contain different colors. Is that OK? What is the logic behind the classes? 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check the very end of the solutions notebook!! 😈 🌈 🙊
* review * Commit from GitHub Actions (Build Notebooks) --------- Co-authored-by: Ben Salmon <[email protected]> Co-authored-by: Ben-Salmon <[email protected]>
* uses conda * trains the classifier
Thanks @afoix for the review! Sorry about the setup issues. I've fixed almost everything that you found in the commits above. Some notes about what fixes what:
The only thing missing is that I realized that the normalization you suggested is indeed necessary, but it breaks one of the points I'm making 🤯. All for the better though, since the resulting narrative makes more sense (also with the lecture). I'm working on that now and I'll ping you when it's done!! As for the colors, yes, it's supposed to be more than one color per class! The answer to what makes the classes is hidden at the very end of the solution notebook 😉 |
See issues #7 #8 #9 and #10.
The goal of this PR is to change the exercise so that the bulk of it works on a slightly modified version of MNIST that is classified by color instead of by digit.
Other changes include:
UNet
and theDenseModel
(from the failure modes exercise)