목록AI 3
Macan
1. 그래프 빌드 2. 그래프 실행 3. 결과 반환 알고리즘을 가지고 있다. >>> import tensorflow as tf/usr/local/Cellar/python3/3.6.3/Frameworks/Python.framework/Versions/3.6/lib/python3.6/importlib/_bootstrap.py:219: RuntimeWarning: compiletime version 3.5 of module 'tensorflow.python.framework.fast_tensor_util' does not match runtime version 3.6 return f(*args, **kwds)>>> node1 = tf.constant(1.0, tf.float32)>>> node2 = tf.co..
TensorFlow is an open source software library for numerical computation using data flow graphs. Data flow 에 tensor들이 오가며 계산이 이루어짐.. Tensorflow 설치는 https://meisteruser.net/devflow/1863 에서 확인. ( Mac User ) 설치 확인 Shell $ python3Python 3.6.3 (default, Oct 4 2017, 06:09:38)[GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.37)] on darwinType "help", "copyright", "credits" or "license" for more infor..
Machine Learning 일종의 소프트웨어(프로그램). Limitations of Explicit programming프로그램이 어떠한 데이터를 통해 학습을 하는 기술. Supervised / Unsupervised Supervised Learning- training data set 이 정해져 있는 학습방식 Unsupervised Learning- 데이터를 보고 스스로 학습방식 Regression- 0 ~ 100점까지의 점수를 예측하는 것 Classification - pass, non-pass 예측. 분류 중 하나 . binary, multi-label Classification