File tree 3 files changed +56
-0
lines changed
3 files changed +56
-0
lines changed Original file line number Diff line number Diff line change
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a99d3e5c0387a867b8786f92aa292b6077cfe38a073ecace4b6bd4a7d3b40cca
3
+ size 421917
Original file line number Diff line number Diff line change
1
+ title : ' Tutorial 11: Vision Transformers'
2
+ author : Phillip Lippe
3
+ created : 2021-08-21
4
+ updated : 2023-03-14
5
+ license : CC BY-SA
6
+ description : ' In this tutorial, we will take a closer look at a recent new trend:
7
+ Transformers for Computer Vision.
8
+
9
+ Since [Alexey Dosovitskiy et al.](https://openreview.net/pdf?id=YicbFdNTTy) successfully
10
+ applied a Transformer on a variety of image recognition benchmarks, there have been
11
+ an incredible amount of follow-up works showing that CNNs might not be optimal architecture
12
+ for Computer Vision anymore.
13
+
14
+ But how do Vision Transformers work exactly, and what benefits and drawbacks do
15
+ they offer in contrast to CNNs?
16
+
17
+ We will answer these questions by implementing a Vision Transformer ourselves, and
18
+ train it on the popular, small dataset CIFAR10.
19
+
20
+ We will compare these results to popular convolutional architectures such as Inception,
21
+ ResNet and DenseNet.
22
+
23
+ This notebook is part of a lecture series on Deep Learning at the University of
24
+ Amsterdam.
25
+
26
+ The full list of tutorials can be found at https://uvadlc-notebooks.rtfd.io.
27
+
28
+ '
29
+ tags :
30
+ - Image
31
+ requirements :
32
+ - torchvision
33
+ - matplotlib
34
+ - seaborn
35
+ - lightning>=2.0.0
36
+ - tensorboard
37
+ accelerator :
38
+ - CPU
39
+ - GPU
40
+ environment :
41
+ - torch==2.0.1
42
+ - torchmetrics==1.2.1
43
+ - torchvision==0.15.2
44
+ - pytorch-lightning==2.0.9.post0
45
+ - matplotlib==3.8.4
46
+ - ipython==8.16.1
47
+ - seaborn==0.13.2
48
+ - lightning==2.3.3
49
+ - tensorboard==2.17.0
50
+ - numpy==1.26.4
51
+ - urllib3==2.2.2
52
+ - setuptools==69.0.3
53
+ published : ' 2024-07-19T20:16:19.153871'
You can’t perform that action at this time.
0 commit comments