Skip to content

Commit fcbd970

Browse files
author
Azure Pipelines
committed
publish [GPU]: course_UvA-DL/04-inception-resnet-densenet
1 parent a70ae83 commit fcbd970

File tree

3 files changed

+56
-0
lines changed

3 files changed

+56
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:f540213edde72f346da95fcdf3ff6dd6ea50457d83f7aef6218af166a66bb52a
3+
size 343823
Loading
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
title: 'Tutorial 4: Inception, ResNet and DenseNet'
2+
author: Phillip Lippe
3+
created: 2021-08-27
4+
updated: 2023-03-14
5+
license: CC BY-SA
6+
tags:
7+
- Image
8+
description: 'In this tutorial, we will implement and discuss variants of modern CNN
9+
architectures.
10+
11+
There have been many different architectures been proposed over the past few years.
12+
13+
Some of the most impactful ones, and still relevant today, are the following: [GoogleNet](https://arxiv.org/abs/1409.4842)/Inception
14+
architecture (winner of ILSVRC 2014), [ResNet](https://arxiv.org/abs/1512.03385)
15+
(winner of ILSVRC 2015), and [DenseNet](https://arxiv.org/abs/1608.06993) (best
16+
paper award CVPR 2017).
17+
18+
All of them were state-of-the-art models when being proposed, and the core ideas
19+
of these networks are the foundations for most current state-of-the-art architectures.
20+
21+
Thus, it is important to understand these architectures in detail and learn how
22+
to implement them.
23+
24+
This notebook is part of a lecture series on Deep Learning at the University of
25+
Amsterdam.
26+
27+
The full list of tutorials can be found at https://uvadlc-notebooks.rtfd.io.
28+
29+
'
30+
requirements:
31+
- torchvision
32+
- matplotlib
33+
- seaborn
34+
- tabulate
35+
- lightning>=2.0.0
36+
- tensorboard
37+
accelerator:
38+
- GPU
39+
environment:
40+
- setuptools==69.0.3
41+
- lightning==2.3.3
42+
- seaborn==0.13.2
43+
- urllib3==2.2.2
44+
- tensorboard==2.17.0
45+
- torchmetrics==1.2.1
46+
- numpy==1.26.4
47+
- ipython==8.16.1
48+
- torchvision==0.15.2
49+
- tabulate==0.9.0
50+
- pytorch-lightning==2.0.9.post0
51+
- matplotlib==3.8.4
52+
- torch==2.0.1
53+
published: '2024-07-19T19:35:09.316261'

0 commit comments

Comments
 (0)