Assignment 1#118
Closed
lucjohn wants to merge 2 commits into
Closed
Conversation
|
Hello, thank you for your contribution. If you are a participant, please close this pull request and open it in your own forked repository instead of here. Please read the instructions on your onboarding Assignment Submission Guide more carefully. If you are not a participant, please give us up to 72 hours to review your PR. Alternatively, you can reach out to us directly to expedite the review process. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changes are you trying to make? (e.g. Adding or removing code, refactoring existing code, adding reports)
I completed Assignment 1 in the
assignment_1.ipynbnotebook by loading and inspecting the Fashion MNIST dataset, building and evaluating a baseline model, building a CNN model, and running controlled experiments on a hyperparameter and a regularization technique. I also filled in the reflection sections with results and analysis.What did you learn from the changes you have made?
I learned that the baseline flatten-and-dense model performs reasonably well on Fashion MNIST, but a CNN improves test accuracy because it can learn spatial features more effectively. I also learned that more capacity does not always help if the model is already learning enough, and that regularization should be used carefully because it can sometimes reduce performance when the model is not strongly overfitting.
Was there another approach you were thinking about making? If so, what approach(es) were you thinking of?
N/A
Were there any challenges? If so, what issue(s) did you face? How did you overcome it?
Fixing tensor shape and model configuration issues and making sure the experiment cells were reinitialized properly before each run. I also had to make sure the final reflections used the actual test metrics from the notebook outputs.
How were these changes tested?
I ran the notebook cells that load the data, train the baseline model, train the CNN, and run the controlled experiments. I verified the reported test accuracy and MAE values from the executed outputs and confirmed the notebook cells completed successfully.
A reference to a related issue in your repository (if applicable)
N/A
Checklist