[TensorFlow1.0] Cancer classification using gene expression Start
BioinformaticsAndMe
[TensorFlow] Cancer classification using gene expression
: TensorFlow 1.0 에서 수행되는 유전자 발현 기반의 Cancer classification 과정
*유전자 발현에 근거하여, Cancer와 Normal을 구분하는 모델링 수행
: 아래 캐글(Kaggle) 사이트에는 '백혈병 AML/ALL'을 예측하는 다양한 텐서플로우 모델들이 존재
*https://www.kaggle.com/varimp/gene-expression-classification
[TensorFlow] 유전자 발현에 근거한 암 분류 모델 예제
: Bladder~Stomach → 해당 조직의 발현값
: Cancer_1 → 1(암환자), 0(정상인)
: 아래 예제 파일은 첫번째 행(Annotation)을 필터한 상태
Bladder |
Breast |
Brain |
Colon |
Kidney |
Liver |
Lung |
Pancreas |
Ovary |
Stomach |
Cancer_1 |
6.0588 |
2.8661 |
3.0927 |
6.0077 |
2.8955 |
5.5982 |
2.8897 |
6.1144 |
5.3427 |
8.1293 |
0 |
4.4945 |
2.2051 |
0.9343 |
5.2312 |
1.787 |
7.3889 |
2.5828 |
3.4843 |
5.5047 |
6.8844 |
0 |
6.2015 |
3.66 |
2.9109 |
6.6927 |
1.5316 |
6.6405 |
3.6972 |
4.4913 |
5.4835 |
8.8552 |
0 |
6.2664 |
1.5854 |
4.9801 |
5.3313 |
2.8055 |
7.7239 |
4.2165 |
3.8075 |
5.8058 |
8.6699 |
1 |
5.904 |
2.1047 |
4.3618 |
5.9225 |
1.3454 |
6.388 |
3.1604 |
5.6396 |
5.1506 |
8.3964 |
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) https://medium.com/@manjabogicevic/multiple-linear-regression-using-python-b99754591ac0
3) http://contents.kocw.net/document/ch5_6.pdf
4) https://www.kaggle.com/varimp/gene-expression-classification
5) 2019년도 유전체 분석 분야 재직*연구자 전문교육
[TensorFlow1.0] Cancer classification using gene expression End
BioinformaticsAndMe
'Machine Learning' 카테고리의 다른 글
[TensorFlow] 이미지 분류 신경망 (0) | 2019.12.06 |
---|---|
[TensorFlow1.0] 인공신경망 (Artificial neural network) 기초 (0) | 2019.11.29 |
[TensorFlow1.0] Multiple Linear Regression (0) | 2019.11.11 |
차원의 저주 (Curse of dimensionality) (0) | 2019.11.04 |
Feature selection vs Feature extraction (0) | 2019.10.29 |