TensorFlow学习笔记
yazhousmile
这个作者很懒,什么都没留下…
展开
-
TensorFlow学习笔记--线性回归
# A linear regression learning algorithm example using TensorFlow library. import tensorflow as tf import numpy import matplotlib.pyplot as plt # Parameters learning_rate = 0.01 training_epochs = 100原创 2017-01-12 09:30:28 · 502 阅读 · 0 评论 -
TensorFlow学习笔记--logistics回归
import tensorflow as tf #Import MNIST data from tensorflow.examples.tutorials.mnist import input_data mnist = input_data.read_data_sets("F:\workspace\example\MNIST",one_hot='True') #parameters learn原创 2017-01-12 09:42:28 · 453 阅读 · 0 评论