5
5
6
6
**Author:** `WoongJoon Choi <https://github.com/woongjoonchoi>`_
7
7
8
+ In this tutorial, we will embark on an exciting journey to build and
9
+ train a VGG network from scratch using Python and popular deep learning
10
+ libraries such as PyTorch. We will dive into the details of the VGG
11
+ architecture, understanding its components and the rationale behind its
12
+ design.
8
13
14
+ Our tutorial is designed for both beginners who are new to deep learning
15
+ and seasoned practitioners looking to deepen their understanding of CNN
16
+ architectures.
9
17
10
18
11
19
"""
12
20
13
21
14
22
######################################################################
15
- # In this tutorial, we will embark on an exciting journey to build and
16
- # train a VGG network from scratch using Python and popular deep learning
17
- # libraries such as PyTorch. We will dive into the details of the VGG
18
- # architecture, understanding its components and the rationale behind its
19
- # design.
20
- #
21
- # Our tutorial is designed for both beginners who are new to deep learning
22
- # and seasoned practitioners looking to deepen their understanding of CNN
23
- # architectures.
23
+
24
24
25
25
26
26
@@ -650,3 +650,23 @@ def __getitem__(self, index: int) :
650
650
]
651
651
652
652
)
653
+
654
+ ######################################################################
655
+ # Conculsion
656
+ # ----------
657
+ # We have seen how pretraining VGG from scratch . This Tutorial will be helpful to reproduce another Foundation Model .
658
+
659
+ ######################################################################
660
+ # More things to try
661
+ # ------------------
662
+ # - Trying On ImageNet
663
+ # - Try All version of Model
664
+ # - Try All evaluation method in VGG paper
665
+
666
+
667
+ ######################################################################
668
+ # Further Reading
669
+ # ---------------
670
+
671
+ # - `VGG training using python script <https://github.com/woongjoonchoi/DeepLearningPaper-Reproducing/tree/master/Vgg>`__
672
+ # - `VGG paper <https://arxiv.org/abs/1409.1556>`__
0 commit comments