@@ -10,7 +10,7 @@ ex) Classification, Detection, Segmentation, Regression, GAN, ...
10
10
11
11
``` bash
12
12
git clone https://github.com/wooni-github/pytorch_tutorials
13
- cd < 다운 위치 >
13
+ cd pytorch_tutorials
14
14
conda env create --file environment.yaml
15
15
```
16
16
@@ -38,17 +38,17 @@ matplotlib
38
38
opencv
39
39
```
40
40
41
- ## [ 1. Tensor operations, reshape] ( https://github.com/wooni-github/pytorch_tutorials/blob/main/ 1.Tensors/README.md )
41
+ ## [ 1. Tensor operations, reshape] ( 1.Tensors/ )
42
42
43
43
기본적인 텐서 생성, 변환, 연산(곱, 행렬곱, 합), 접근, 형태 변환 등에 관한 예제입니다.
44
44
45
45
46
- ## [ 2. DataLoader] ( https://github.com/wooni-github/pytorch_tutorials/blob/main/ 2.DataLoader/README.md )
46
+ ## [ 2. DataLoader] ( 2.DataLoader/ )
47
47
48
48
파이토치에서 학습/추론시 배치별 데이터 생성을 위한 ` DataLoader ` 에 관한 예제입니다.
49
49
50
50
51
- ## [ 3. SimpleExamples] ( https://github.com/wooni-github/pytorch_tutorials/blob/main/ 3.SimpleExamples/README.md )
51
+ ## [ 3. SimpleExamples] ( 3.SimpleExamples/ )
52
52
53
53
본격적인 ** SOTA** 를 살펴보기 전, 간단한 예제들을 통해 파이토치의 여러가지 기능을 사용해보는 예제입니다.
54
54
70
70
71
71
![ MNIST_Regression] ( 3.SimpleExamples/3.5.MNIST_Regression/MNIST_Reg.png )
72
72
73
- ## [ 4. Pretrained networks] ( https://github.com/wooni-github/pytorch_tutorials/blob/main/ 4.PretrainedNetworks/README.md )
73
+ ## [ 4. Pretrained networks] ( 4.PretrainedNetworks/ )
74
74
75
75
파이토치에서 제공하는 다양한 네트워크의 pretrained weights를 이용한 예제입니다.
76
76
@@ -106,7 +106,7 @@ opencv
106
106
107
107
<br >
108
108
109
- ## [ 5. Transfer learning & Fine tuning] ( 5.TransferLearningFineTuning/README.md )
109
+ ## [ 5. Transfer learning & Fine tuning] ( 5.TransferLearningFineTuning/ )
110
110
111
111
커스텀 데이터셋에 파이토치의 pretrained network를 이용하여 전이학습 (Transfer learning)과 파인 튜닝 (Fine tuning)을 적용해 이미지 분류 (Image classification)를 수행해보는 예제입니다.
112
112
@@ -116,12 +116,14 @@ opencv
116
116
117
117
<br >
118
118
119
- ## [ 6. GAN] ( 6.GAN/README.md )
119
+ ## [ 6. GAN] ( 6.GAN/ )
120
120
121
121
적대적 생성 신경망 (** G** enerative ** A** dversarial ** N** etworks)을 이용한 MNIST 데이터 생성 예제입니다.
122
122
123
123
![ MLP_GAN] ( 6.GAN/6.1.MNIST_MLP_GAN/MNIST_MLP_GAN.gif )
124
124
125
125
- MNIST GAN
126
- - MNIST DCGAN (Deep Convolutiona GAN)
126
+ - MNIST DCGAN (Deep Convolutional GAN)
127
127
- MNIST CGAN (Conditional GAN)
128
+
129
+ ![ MLP_CGAN] ( 6.GAN/6.3.MNIST_CGAN/MNIST_CGAN.png )
0 commit comments