[TensorFlow1.0] Multiple Linear Regression Start
BioinformaticsAndMe
[TensorFlow] Multiple Linear Regression(MLR)?
: TensorFlow 1.0 에서 수행되는 다중선형회귀분석(Multiple Linear Regression;MLR) 과정
*Multiple Linear Regression - 설명변수(독립변수)가 2개 이상이고, 종속변수가 1개인 회귀모형을 모델링하는 기법
: 다중선형회귀분석은 여러 독립변수를 도입함으로써, 오차값을 줄이고 결과 정확도를 높임
: 아래 표를 기반해 'Profit'을 종속변수(Dependent variable)로, 나머지를 독립변수(Independent variable)에 두는 다중회귀모형을 만들 수 있음
[TensorFlow] MLR 예제
: 텐서플로우 MLR 분석을 위한, 기업 공채 지원자 점수 예제표
지원자 | 1차 서류 |
2차 인적성 |
3차 면접 |
최종 점수 |
가 | 65 |
90 |
85 |
240 |
나 | 80 |
88 |
92 |
260 |
다 | 70 |
75 |
95 |
240 |
라 | 75 |
85 |
65 |
225 |
마 | 90 |
85 |
85 |
260 |
# '__future__' : python 2에서 python 3 문법 사용 가능
from __future__ import absolute_import, division, print_function
# 텐서플로우 라이브러리 임포트
import tensorflow as tf
#Reference
1) https://github.com/aymericdamien/TensorFlow-Examples/tree/master/tensorflow_v2
2) https://medium.com/@manjabogicevic/multiple-linear-regression-using-python-b99754591ac0
3) http://contents.kocw.net/document/ch5_6.pdf
[TensorFlow1.0] Multiple Linear Regression End
BioinformaticsAndMe
'Machine Learning' 카테고리의 다른 글
[TensorFlow1.0] 인공신경망 (Artificial neural network) 기초 (0) | 2019.11.29 |
---|---|
[TensorFlow1.0] Cancer classification using gene expression (0) | 2019.11.20 |
차원의 저주 (Curse of dimensionality) (0) | 2019.11.04 |
Feature selection vs Feature extraction (0) | 2019.10.29 |
K-NN(최근접이웃) 알고리즘 (0) | 2019.10.23 |