Untitled 출처¶http://jorditorres.org/first-contact-with-tensorflow/#cap4 (First Contact with tensorflow) 단일신경망 Single Layer Neural Network (ver. python)¶ The MNIST data-set¶숫자 손글씨(hand-written digits)에 관한 엄청 유명한 데이터 셋.training set으로 6만개 이상, test set으로 1만개이다.흑백사진으로 이루어져있고, anti-aliasing 돼있다. 전 처리가 다 돼있기 때문에, 패턴인식을 시작하는 사람들에게 이상적이라고 한다.supervised learning의 한 예이다. In [1]: import tensorflow as tf from..
Clustering+ver_Python 출처¶http://jorditorres.org/first-contact-with-tensorflow/#cap3 (First contact with tensorflow) k-means 군집화 (ver. 파이썬)¶k-means Clustering (ver. Python)¶ 1. 좌표값 생성¶ In [1]: import numpy as np num_puntos = 2000 conjunto_puntos = [] for i in range(num_puntos): if np.random.random()
출처 http://jorditorres.org/first-contact-with-tensorflow/#cap3 (First Contact with tensorflow)https://tensorflow.rstudio.com/ (TensorFlow™ for R)http://motioninsocial.com/tufte/ (Tufte in R) k-means 군집화 (ver. R) k-means Clustering (ver. Python) 1. 좌표값 생성 num_puntos