-
Notifications
You must be signed in to change notification settings - Fork 80
Adding UvA-DL notebook "Inception, ResNet, and DenseNet" #78
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
Merged
Merged
Changes from 4 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
f53b4f0
Adding Inception, ResNet, DenseNet tutorial
phlippe 12c32e7
Running yapf
phlippe 06cb185
Updating images
phlippe ff585e7
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 6cda4bf
Update course_UvA-DL/inception-resnet-densenet/.meta.yaml
ethanwharris 43a2168
Adding Inception, ResNet, DenseNet tutorial
phlippe 8c78a9e
Running yapf
phlippe c2db565
Updating images
phlippe 2f2b316
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 3e8c8f4
Update course_UvA-DL/inception-resnet-densenet/.meta.yaml
ethanwharris 2b04323
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] ed38383
Merge branch 'main' into inception-resnet-densenet
phlippe 2d9fd00
Merge branch 'inception-resnet-densenet' of https://github.com/phlipp…
phlippe b07dca4
Integrating suggestions
phlippe f8d28f0
Flake8
phlippe 9836a3a
Adding missing requirement
phlippe 4426f23
Merge branch 'main' into inception-resnet-densenet
Borda File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
title: Inception, ResNet and DenseNet | ||
author: Phillip Lippe | ||
created: 2021-08-27 | ||
updated: 2021-08-27 | ||
license: CC BY-SA | ||
tags: | ||
- Text | ||
description: | | ||
In this tutorial, we will implement and discuss variants of modern CNN architectures. | ||
There have been many different architectures been proposed over the past few years. | ||
Some of the most impactful ones, and still relevant today, are the following: [GoogleNet](https://arxiv.org/abs/1409.4842)/Inception architecture (winner of ILSVRC 2014), [ResNet](https://arxiv.org/abs/1512.03385) (winner of ILSVRC 2015), and [DenseNet](https://arxiv.org/abs/1608.06993) (best paper award CVPR 2017). | ||
All of them were state-of-the-art models when being proposed, and the core ideas of these networks are the foundations for most current state-of-the-art architectures. | ||
Thus, it is important to understand these architectures in detail and learn how to implement them. | ||
This notebook is part of a lecture series on Deep Learning at the University of Amsterdam. | ||
The full list of tutorials can be found at https://uvadlc-notebooks.rtfd.io. | ||
requirements: | ||
- torchvision | ||
- matplotlib | ||
- seaborn | ||
accelerator: | ||
- GPU |
1,298 changes: 1,298 additions & 0 deletions
1,298
course_UvA-DL/inception-resnet-densenet/Inception_ResNet_DenseNet.py
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,290 changes: 1,290 additions & 0 deletions
1,290
course_UvA-DL/inception-resnet-densenet/inception_block.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,194 changes: 1,194 additions & 0 deletions
1,194
course_UvA-DL/inception-resnet-densenet/resnet_block.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+123 KB
course_UvA-DL/inception-resnet-densenet/tensorboard_screenshot_DenseNet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+119 KB
course_UvA-DL/inception-resnet-densenet/tensorboard_screenshot_GoogleNet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+117 KB
course_UvA-DL/inception-resnet-densenet/tensorboard_screenshot_ResNet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.
Uh oh!
There was an error while loading. Please reload this page.