Skip to content

Commit 32ed435

Browse files
committed
modify : VGG training from scratch
Add More things to try , Conclusion , Further Reading
1 parent 981ded5 commit 32ed435

File tree

1 file changed

+29
-9
lines changed

1 file changed

+29
-9
lines changed

beginner_source/Pretraining_Vgg_from_scratch.py

Lines changed: 29 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@
55
66
**Author:** `WoongJoon Choi <https://github.com/woongjoonchoi>`_
77
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.
813
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.
917
1018
1119
"""
1220

1321

1422
######################################################################
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+
2424

2525

2626

@@ -650,3 +650,23 @@ def __getitem__(self, index: int) :
650650
]
651651

652652
)
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

Comments
 (0)