일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 딥러닝
- 독후감
- matplotlib
- 파이썬
- Python
- MySQL
- tensorflow
- python visualization
- Blog
- 통계학
- 한빛미디어
- 매틀랩
- Visualization
- MATLAB
- 블로그
- Tistory
- Linux
- 월간결산
- SQL
- 티스토리
- 텐서플로
- 파이썬 시각화
- Ga
- 서평단
- 리눅스
- Pandas
- 시각화
- 한빛미디어서평단
- 서평
- Google Analytics
- Today
- Total
목록Tutorial (5)
pbj0812의 코딩 일기
이 글은 TensorFlow tutorial(링크)의 예제를 재구성한 글입니다. TensorFlow의 keras를 이용하여 fashion mnist 데이터를 학습하고 예측하는 예제입니다. 학습에 필요한 부분만 정리하였으니 전체코드는 위 링크를 통해 보시기 바랍니다. 라이브러리 불러오기 import tensorflow as tf from tensorflow import keras import numpy as np import matplotlib.pyplot as plt - tensorflow의 keras 사용 데이터 불러오기 fashion_mnist = keras.datasets.fashion_mnist (train_images, train_labels), (test_images, test_labels) ..
Pytorch with examples (TensorFlow) 코드 분석 - 아래 글은 파이토치 튜토리얼 중 TensorFlow를 이용하여 모델을 구축하는 부분을 재구성한 글입니다. - 코드를 조각 내었기 때문에 전체 코드는 깃허브나 아래 링크 참조 바랍니다. 원본링크 : https://pytorch.org/tutorials/beginner/pytorch_with_examples.html TensorFlow - PyTorch가 동적인 computational graph를 사용하는데에 반해, TensorFlow는 정적인 그래프를 사용한다. - PyTorch에서 매번 새로운 그래프가 생성될때, TensorFlow는 같은 그래프를 재사용한다. - 정적인 그래프는 최적화 하기에 좋다. - 효율성을 위해 여러 그..
Pytorch with examples (autograd 재정의) 코드 분석 - 아래 글은 파이토치 튜토리얼 중 autograd를 재정의 하는 부분을 학습하여 영상으로 만든 것을 재구성한 글입니다. 원본링크 : https://pytorch.org/tutorials/beginner/pytorch_with_examples.html 유투브 영상 : https://youtu.be/TclwMS-eZuU 한글 주석 코드: https://github.com/pbj0812/deep_learning/blob/master/pytorch_tutorial/learning_pytorch_with_examples_new_func.ipynb 코드 프리뷰 기본구조 - 기존과 동일하다. 함수 재정의 class MyReLU(torch...
Pytorch with examples (autograd) 코드 분석 - 아래 글은 파이토치 튜토리얼 중 autograd 부분을 학습하여 영상으로 만든 것을 재구성한 글입니다. 원본링크 : https://pytorch.org/tutorials/beginner/pytorch_with_examples.html 유투브 영상 : https://youtu.be/U6cOIda_9y0 한글 주석 코드: https://github.com/pbj0812/deep_learning/blob/master/pytorch_tutorial/learning_pytorch_with_examples_autograd.ipynb Autograd 장점 backward 계산시 수동으로 직접 구현할 필요가 없다. 코드 프리뷰 - 전체적으로 짧아..
Pytorch with examples (numpy) 코드 분석 - 아래 글은 파이토치 튜토리얼 중 numpy 부분을 학습하여 영상으로 만든 것을 재구성한 글입니다. 원본링크 : https://pytorch.org/tutorials/beginner/pytorch_with_examples.html 유투브 영상 : https://youtu.be/ovENuzUM_5k 한글 주석 코드: https://github.com/pbj0812/deep_learning/blob/master/pytorch_tutorial/learning_pytorch_with_examples _numpy.ipynb 코드 프리뷰 - 전체 코드이다. - 비교적 짧게 구성되어 있다. 설계도 - 위 코드를 프리뷰하여 작성한 설계도이다. - hid..