[TensorFlow] Linear Regression Start
BioinformaticsAndMe
[TensorFlow] Logistic Regression
: TensorFlow 2.0 에서 수행되는 로지스틱 회귀분석 과정
: MNIST 데이터베이스 (Modified National Institute of Standards and Technology database)의 '0~9 손글씨' 데이터 사용
→ 60,000개의 Training 이미지 및 10,000개의 Testing 이미지 포함
→ 각 MINST 이미지 크기는 28x28 픽셀이며, 픽셀 하나는 0~255 사이의 숫자값(density)을 가짐
: 이 예제 과정에서 각 이미지는 1) float32로 변환, 2) 784개 feature(28x28)의 1차원 배열화, 3) [0, 1]로 표준화 수행
# '__future__' : python 2에서 python 3 문법 사용 가능
from __future__ import absolute_import, division, print_function
# 텐서플로우, 넘파이 라이브러리 임포트
import tensorflow as tf
import numpy as np
#Reference
1) https://github.com/aymericdamien/TensorFlow-Examples/tree/master/tensorflow_v2
2) http://yann.lecun.com/exdb/mnist/
3) https://ko.wikipedia.org/wiki/MNIST_%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4
4) https://mmlind.github.io/Simple_1-Layer_Neural_Network_for_MNIST_Handwriting_Recognition/
5) https://wikidocs.net/22647
[TensorFlow] Logistic Regression End
BioinformaticsAndMe
'Machine Learning' 카테고리의 다른 글
K-NN(최근접이웃) 알고리즘 (0) | 2019.10.23 |
---|---|
랜덤포레스트(Random Forest) (0) | 2019.10.17 |
[TensorFlow] Linear Regression (0) | 2019.10.05 |
[TensorFlow] 기본 연산 (0) | 2019.10.04 |
[TensorFlow] 문자열 출력 (0) | 2019.10.03 |