일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- classifier
- AI
- Deep learning
- 자연어처리
- 강의정리
- 딥러닝
- rnn
- Natural Language Processing with PyTorch
- Hypothesis
- DP
- 스택
- DynamicProgramming
- 파이토치
- 알고리즘
- BAEKJOON
- Softmax
- 머신러닝
- 홍콩과기대김성훈교수
- 파이썬
- 강의자료
- Python
- tensorflow
- machine learning
- Cross entropy
- 머신러닝 기초
- 백준
- 정렬
- pytorch
- loss
- MSE
- Today
- Total
목록loss (3)
개발자의시작
이 글은 모두를위한딥러닝 시즌2 https://github.com/deeplearningzerotoall/PyTorch 을 정리한 글입니다. GitHub - deeplearningzerotoall/PyTorch: Deep Learning Zero to All - Pytorch Deep Learning Zero to All - Pytorch. Contribute to deeplearningzerotoall/PyTorch development by creating an account on GitHub. github.com 이 chapter에서는 RNN을 이용해서 timeseries data를 예측하는 코드를 PyTorch로 구현해본다. timeseries data는 보통 시계열 데이터라고 부르는데, 일정한 ..
이 글은 모두를위한딥러닝 시즌2 https://github.com/deeplearningzerotoall/PyTorch 을 정리한 글입니다. GitHub - deeplearningzerotoall/PyTorch: Deep Learning Zero to All - Pytorch Deep Learning Zero to All - Pytorch. Contribute to deeplearningzerotoall/PyTorch development by creating an account on GitHub. github.com Multivariate Linear regression - 여러 개의 정보로부터 하나의 추측 값을 계산하는 모델 복수의 정보를 가지고 어떻게 예측을 할 수 있을까? Data Hypothes..
은 모두를위한딥러닝 시즌2 https://github.com/deeplearningzerotoall/PyTorch 을 정리한 글입니다. 이번 챕터에서 모델링하려는 것은 공부시간과 점수의 상관관계이다. 내가 4시간을 공부했다면 몇 점 정도를 받을 수 있을까? 를 예측하는 것이다. 모델의 학습을 위한 데이터는 "torch.tensor"의 형태이며, 입력과 출력을 각기 다른 텐서에 저장한다. 입력은 x_train, 출력은 y_train 로 표기한다. 1 2 3 4 5 6 7 import torch import numpy as np x_train = torch.FloatTensor([[1], [2], [3]]) y_train = torch.FloatTensor([[2], [4], [6]]) print(x_tra..