TensorFlow实现Logistic回归
作者:不凡De老五 时间:2023-11-27 18:49:14
本文实例为大家分享了TensorFlow实现Logistic回归的具体代码,供大家参考,具体内容如下
1.导入模块
import numpy as np
import pandas as pd
from pandas import Series,DataFrame
from matplotlib import pyplot as plt
%matplotlib inline
#导入tensorflow
import tensorflow as tf
#导入MNIST(手写数字数据集)
from tensorflow.examples.tutorials.mnist import input_data
2.获取训练数据和测试数据
import ssl
ssl._create_default_https_context = ssl._create_unverified_context
mnist = input_data.read_data_sets('./TensorFlow',one_hot=True)
test = mnist.test
test_images = test.images
train = mnist.train
images = train.images
3.模拟线性方程
#创建占矩阵位符X,Y
X = tf.placeholder(tf.float32,shape=[None,784])
Y = tf.placeholder(tf.float32,shape=[None,10])
#随机生成斜率W和截距b
W = tf.Variable(tf.zeros([784,10]))
b = tf.Variable(tf.zeros([10]))
#根据模拟线性方程得出预测值
y_pre = tf.matmul(X,W)+b
#将预测值结果概率化
y_pre_r = tf.nn.softmax(y_pre)
4.构造损失函数
# -y*tf.log(y_pre_r) --->-Pi*log(Pi) 信息熵公式
cost = tf.reduce_mean(-tf.reduce_sum(Y*tf.log(y_pre_r),axis=1))
5.实现梯度下降,获取最小损失函数
#learning_rate:学习率,是进行训练时在最陡的梯度方向上所采取的「步」长;
learning_rate = 0.01
optimizer = tf.train.GradientDescentOptimizer(learning_rate).minimize(cost)
6.TensorFlow初始化,并进行训练
#定义相关参数
#训练循环次数
training_epochs = 25
#batch 一批,每次训练给算法10个数据
batch_size = 10
#每隔5次,打印输出运算的结果
display_step = 5
#预定义初始化
init = tf.global_variables_initializer()
#开始训练
with tf.Session() as sess:
#初始化
sess.run(init)
#循环训练次数
for epoch in range(training_epochs):
avg_cost = 0.
#总训练批次total_batch =训练总样本量/每批次样本数量
total_batch = int(train.num_examples/batch_size)
for i in range(total_batch):
#每次取出100个数据作为训练数据
batch_xs,batch_ys = mnist.train.next_batch(batch_size)
_, c = sess.run([optimizer,cost],feed_dict={X:batch_xs,Y:batch_ys})
avg_cost +=c/total_batch
if(epoch+1)%display_step == 0:
print(batch_xs.shape,batch_ys.shape)
print('epoch:','%04d'%(epoch+1),'cost=','{:.9f}'.format(avg_cost))
print('Optimization Finished!')
#7.评估效果
# Test model
correct_prediction = tf.equal(tf.argmax(y_pre_r,1),tf.argmax(Y,1))
# Calculate accuracy for 3000 examples
# tf.cast类型转换
accuracy = tf.reduce_mean(tf.cast(correct_prediction,tf.float32))
print("Accuracy:",accuracy.eval({X: mnist.test.images[:3000], Y: mnist.test.labels[:3000]}))
来源:https://blog.csdn.net/weixin_38748717/article/details/78859124
标签:TensorFlow,Logistic回归
0
投稿
猜你喜欢
得到元素真实的背景颜色的函数
2008-05-20 12:04:00
Web Design广告字体设计技巧
2010-06-24 21:52:00
分享一下SQL Server执行动态SQL的正确方式
2024-01-14 00:17:56
Django表单外键选项初始化的问题及解决方法
2022-07-09 04:28:42
Python高并发和多线程有什么关系
2023-12-08 04:24:47
python三引号如何输入
2021-08-12 12:42:34
python 实现在tkinter中动态显示label图片的方法
2022-07-17 11:10:15
解决python Jupyter不能导入外部包问题
2021-02-02 06:19:03
Python 实操显示数据图表并固定时间长度
2021-06-08 02:58:57
Python基础之numpy库的使用
2023-01-21 02:48:51
PHP PDOStatement::bindParam讲解
2023-06-05 05:47:28
python 使用xlsxwriter循环向excel中插入数据和图片的操作
2023-01-30 15:08:47
python实现员工管理系统
2022-01-03 05:20:15
Vue传参一箩筐(页面、组件)
2024-05-29 22:44:13
解决pycharm上的jupyter notebook端口被占用问题
2022-10-28 15:43:13
在pycharm中debug 实时查看数据操作(交互式)
2023-01-19 08:31:11
python实现四舍五入方式
2021-01-17 01:39:33
SQL Server 2005 Express混合模式登录设置
2009-02-23 13:55:00
python3实现弹弹球小游戏
2021-04-21 07:12:56
详解laravel安装使用Passport(Api认证)
2023-11-19 02:08:54