Tensorflow 实现线性回归(迭代方法)

import matplotlib.pyplot as plt
import numpy as np
import tensorflow as tf
from sklearn import datasets
from tensorflow.python.framework import ops
ops.reset_default_graph()

sess = tf.Session()
iris = datasets.load_iris()

x_vals = np.array([x[3] for x in iris.data])
y_vals = np.array([y[0] for y in iris.data])

learning_rate = 0.05
batch_size = 25
x_data = tf.placeholder(shape=[None,1],dtype=tf.float32)
y_target = tf.placeholder(shape=[None,1],dtype=tf.float32)

A = tf.Variable(tf.random_normal(shape=[1,1]))
b = tf.Variable(tf.random_normal(shape=[1,1]))

model_output = tf.add(tf.matmul(x_data,A),b)

loss = tf.reduce_mean(tf.square(y_target - model_output))
init = tf.global_variables_initializer()
sess.run(init)

my_opt = tf.train.GradientDescentOptimizer(learning_rate)
train_step = my_opt.minimize(loss)

loss_vec = []
for i in range(100):
rand_index = np.random.choice(len(x_vals),size=batch_size)
rand_x = np.transpose([x_vals[rand_index]])
rand_y = np.transpose([y_vals[rand_index]])
sess.run(train_step,feed_dict={x_data:rand_x,y_target:rand_y})
temp_loss = sess.run(loss,feed_dict ={x_data:rand_x,y_target:rand_y})
loss_vec.append(temp_loss)
if(i + 1)%25 == 0:
print(‘step #’+str(i+1)+’ A= ‘+str(sess.run(A))+’ b = ‘+str(sess.run(b)))
print(‘Loss= ‘+str(temp_loss))
[slope] = sess.run(A)
[y_intercept] = sess.run(b)

print(slope)
print(y_intercept)

best_fit = []
for i in x_vals:
best_fit.append(slope*i + y_intercept)

plt.plot(x_vals,y_vals,’o’,color=’b’,label=’Data points’)
plt.plot(x_vals,best_fit,’-‘,color=’r’,label=’Best fit line’,linewidth=3)
plt.legend(loc=’upper left’)
plt.show()

plt.plot(loss_vec,’k-‘)
plt.title(‘L2 coss function’)
plt.xlabel(‘Generation’)
plt.ylabel(‘L2 Loss’)
plt.show()

这里写图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值