태그>텐서플로우(총 4개의 글)
'텐서플로우' 관련 최근글
-
- 1. 텐서플로를 이용한 간단한 선형회귀분석
-
Yatta! by 써니킴|03/03 22:21
import tensorflow as tfxData = [1,2,3,4,5,6,7]yData = [25000,55000,75000,110000,128000,155000,180000]W = tf.Variable(tf.random_uniform([1],-100,100)) #초기값으로 랜덤값을 준다.b = tf.Variable(tf.random_uniform([1],-100,100)) X = tf.p..
경사하강법, Gradient, 회귀분석, 텐서플로우, tensorflow
- 1. 텐서플로를 이용한 간단한 선형회귀분석
-
- [ML] Linear Regression의 개념, lab 2
-
Yoonamid by YOONAMID|2017/06/28 18:50
Lecture - 데이터 셋 입력 => Tensorflow 학습 => X갑 입력 => Y값 출력 - 주어진 데이터 셋 X = [1, 2, 3], Y = [1, 2, 3] - Regression 모델을 학습한다 -> Hypothesis를 만..
ML, Tensorflow, 머신러닝, 텐서플로우
- [ML] Linear Regression의 개념, lab 2
-
- [ML] 기본적인 Machine Learning 용어와 개념 & lab 1
-
Yoonamid by YOONAMID|2017/06/28 18:34
Lecture - 기존 프로그래밍의 한계 (Limitation of Explicit Programming) : too many rules! • Machine learning : Arthur Samuel (1959) - Supervised/Unsupervised Learning •Supervised : learning with labeled examples - training set - 이미지..
ML, 머신러닝, Tensorflow, 텐서플로우
- [ML] 기본적인 Machine Learning 용어와 개념 & lab 1
-