[홀로서기 2] 딥러닝 홀로서기 강의 정리(4.Lab-8.Lec)

2022. 8. 1. 11:11·✨ 공부 기록/딥러닝

<수강한 강의>

[#4.Lab] Linear Regression Practice - 딥러닝 홀로서기

[#5.Lab] Review / Regression with Pytorch - 딥러닝 홀로서기

[#6.Lec] Binary / Multi-Label Classification - 딥러닝 홀로서기

[#7.Lab] Multi-Class Classification with Pytorch - 딥러닝 홀로서기

[#8.Lec] History of DL / MLP Basic - 딥러닝 홀로서기

 

수강 날짜 : 220801-

 

<내용 정리>

 

[#4.Lab] Linear Regression Practice

class H():
  def __init__(self, w):
    self.w = w
  def forward(self, x):
    return self.w * x

def cost (h,X,Y):
  error = 0
  for i in range(len(X)):
    error += (h.forward(X[i]) - Y[i])**2
    print(error)

h = H(4)
cost(h,X,Y)

 

* matplotlib 활용 방법 소개.

 

 

[#5.Lab] Review / Regression with Pytorch - 딥러닝 홀로서기

 

실습자료 링크 : https://github.com/heartcored98/Standalone-DeepLearning/blob/master/Lec2/Lab2_pytorch_regression_demo.ipynb

자료 저장소 링크 : https://github.com/heartcored98/Standalone-DeepLearning

 

 

[#6.Lec] Binary / Multi-Label Classification - 딥러닝 홀로서기

 

* sigmoid function을 활용해 linear regression 문제를 classification 문제로 바꿀 수 있다. -> 이 때 원래 사용했던 cost function을 그대로 사용하면 안된다.

 

* multinomial classification : 분류되는 class가 여러개. 새로운 hypothesis를 정의해야 한다. -> 각각의 출력값이 확률값이 되면 좋겠다 - softmax function을 이용.

 

[#7.Lab] Multi-Class Classification with Pytorch - 딥러닝 홀로서기

 

실습 자료 : https://github.com/heartcored98/Standalone-DeepLearning/blob/master/Lec2/Lab3_pytorch_classification_demo.ipynb

자료 저장소 : https://github.com/heartcored98/Standalone-DeepLearning

 

[#8.Lec] History of DL / MLP Basic - 딥러닝 홀로서기

 

* 딥러닝의 역사

* back propagation with chain rule

'✨ 공부 기록 > 딥러닝' 카테고리의 다른 글

[홀로서기 6] 딥러닝 홀로서기 강의 정리(chap 20, 21, 22)  (0) 2022.08.31
[홀로서기 5] 딥러닝 홀로서기 강의 정리(chap 15, 16, 17, 18, 19)  (0) 2022.08.23
[홀로서기 4] 딥러닝 홀로서기 강의 정리(chap 11, 12, 13, 14)  (0) 2022.08.15
[홀로서기 3] 딥러닝 홀로서기 강의 정리(9.Lab-10.Lec)  (0) 2022.08.09
[홀로서기 1] 딥러닝 홀로서기 강의 정리(-3.Lec)  (0) 2022.07.20
'✨ 공부 기록/딥러닝' 카테고리의 다른 글
  • [홀로서기 5] 딥러닝 홀로서기 강의 정리(chap 15, 16, 17, 18, 19)
  • [홀로서기 4] 딥러닝 홀로서기 강의 정리(chap 11, 12, 13, 14)
  • [홀로서기 3] 딥러닝 홀로서기 강의 정리(9.Lab-10.Lec)
  • [홀로서기 1] 딥러닝 홀로서기 강의 정리(-3.Lec)
LaonMoon
LaonMoon
  • LaonMoon
    스토리생성연구블로그
    LaonMoon
  • 전체
    오늘
    어제
  • 공지사항

    • About me👋
    • 분류 전체보기
      • ✨ Story Generation
        • 논문 리뷰
        • 연구 관련 생각
      • ✨ 자연어 처리
        • (짧은) 논문 리뷰
        • HuggingFace
        • Transformer 구현
      • ✨ 공부 기록
        • 알고리즘
        • 딥러닝
        • 웹 개발
        • Flutter
        • Flask
        • Android
        • NLP
        • Docker&k8s
        • Database
        • [24-1] 데이터 분석
        • [24-1] RL
      • ✨ 포트폴리오
        • 2020
        • 2021
        • 2022
        • 2023
        • 2024
      • 프로그래밍
        • 오류(Error)정리
        • 시행착오
        • 리눅스 명령어
        • 공부내용 정리
      • AI Playground
  • 인기 글

  • 최근 글

  • hELLO· Designed By정상우.v4.10.3
LaonMoon
[홀로서기 2] 딥러닝 홀로서기 강의 정리(4.Lab-8.Lec)
상단으로

티스토리툴바