Skip to content

Conversation

@daehoidar
Copy link
Member

No description provided.

paulben0410
paulben0410 previously approved these changes Nov 21, 2022
Copy link

@beautifulchoi beautifulchoi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

죄송합니다,, 리뷰가 좀 늦어졌네요... 고등학생때부터 오토인코더를 사용해보셨다니 ㄷㄷ 대단하신 것 같습니다 ,,, !
실습내용과 시각화 부분도 깔끔해서 쉽게 잘 정리 된 것 같습니다. 고생하셨습니다

```
![img5](../assets/images/post-VAE/img5.png)

 위에서 모델을 만들 때 활성화 함수로 Leaky ReLU가 쓰였는데 leaky ReLU는 x가 0보다 작으면 0을 y로갖는 상수 함수이고 0보다 크면 항등 함수인 일반 ReLU와 달리 x값이 0보다 작을 때 기울기가 0.001으로 작은 음수값을 가진다는 차이점이 존재합니다.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LeakyRELU의 특성이 음의 영역에서 0을 y로 갖는 상수함수라고 읽혀질 여지가 있어, 끊어서 relu와의 차이를 설명하면 좋을 것 같습니다

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수정했습니다. 감사합니다!


![img8](../assets/images/post-VAE/img8.png)
<br/>
&nbsp;그 다음, 숫자에 따라 색을 구분하여 산점도를 그려보겠습니다. 모델에게 해당 사진 데이터에 해당하는 숫자 레이블을 입력해주지 않았음에도 AE는 자연스럽게 비슷한 숫자를 잠재 공간의 같은 영역에 모은 것을 볼 수 있습니다.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AE의 결과와 문제점을 분리하면 좋을 것 같습니다.(비슷한 숫자를 같은 공간안에 클러스터 해주는건 장점에 속하는데, 단점처럼-단점이 될수도 있으나 읽히는 것 같습니다)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

결과와 문제점으로 영역을 나누었습니다. 자세한 리뷰 감사드립니다!

00HS
00HS previously approved these changes Dec 16, 2022
yurishin929
yurishin929 previously approved these changes Dec 16, 2022
Copy link

@hjm507 hjm507 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이상 탐지 관련해서 오토인코더 이용해보려고 했으나 쉽지 않을 것 같아 시간 상 포기했었던 경험이 있는데 대단하시네요.. 실제 코드 및 이미지와 함께 설명이 잘 되어 있어 좋았습니다!

decoder = Model(decoder_input, decoder_output)
```
<br/>
&nbsp;인코더와 디코더를 동시에 훈련시키기 위해서는 데이터가 언코더를 지나 디코더로 나오는 하나의 모델을 만들어야 합니다. 다음 코드와 같이 오토 인코더 모델의 입력을 인코더의 입력으로 하고 디코더의 입력은 인코더의 출력으로 한 뒤 오토 인코더 모델의 출력을 디코더의 출력을 하여 AE 모델을 만듭니다.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

언코더 -> 인코더

오타 수정해야 할 것 같습니다.
이외에도 자잘한 문법 오류 등은 맞춤법 검사기 등을 이용해 전체 내용에 대해 한 번 체크해주시고 수정해 주셨으면 좋겠습니다.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

오타와 맞춤법 수정했습니다. 감사합니다!

&nbsp;인코더와 디코더에 들어갈 때의 데이터의 형태와 인코더와 디코더의 filter 수, kernel size, strides를 정의해 줍니다.

```python
AE = Autoencoder(
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

사용한 라이브러리나 환경 등에 대해서 간략하게 안내해주거나 설명해주었으면 좋을 것 같습니다.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

말씀하신 내용 간략하게 추가했습니다. 리뷰 감사드립니다!

@SSUHYUNKIM SSUHYUNKIM added ✅ 리뷰 완료 한 명 이상이 리뷰를 완료했을 때 🔨 수정 요청 리뷰 과정 중 수정 사항이 생겼을 때 and removed 🙋‍♂️🙋‍♀️ 리뷰 요청 PR 리뷰를 요청합니다~ labels Jan 9, 2023
@daehoidar daehoidar dismissed stale reviews from yurishin929 and 00HS via ca28a08 January 14, 2023 21:57
@SSUHYUNKIM SSUHYUNKIM added 💯 최종 완료 모든 수정과 리뷰가 끝난 후 merge를 기다릴 때 and removed ✅ 리뷰 완료 한 명 이상이 리뷰를 완료했을 때 🔨 수정 요청 리뷰 과정 중 수정 사항이 생겼을 때 labels Feb 7, 2023
@SSUHYUNKIM SSUHYUNKIM merged commit ddd00fb into GDSC-University-of-Seoul:master Feb 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

💯 최종 완료 모든 수정과 리뷰가 끝난 후 merge를 기다릴 때

Projects

None yet

Development

Successfully merging this pull request may close these issues.

8 participants