使用tensorflow实现一个简单逻辑回归

import tensorflow as tf <strong>
import numpy as np
import matplotlib.pyplot as plt
import input_data

minist = input_data.read_data_sets("data/", one_hot=True)

这里写图片描述

 // 导入minist数据集
trainimg = minist.train.images
trainlabel = minist.train.labels
testimg = minist.test.images
testlabel = minist.test.labels
 // 查看数据样式
print(trainimg.shape)
print(trainlabel.shape)
print(testimg.shape)
print(testlabel.shape)

// 输出结果
(55000, 784)
(55000, 10)
(10000, 784)
(10000, 10)
x = tf.placeholder("float", [None,784])
y = tf.placeholder("float", [None,10])

W = tf.Variable(tf.zeros([784,10]))
b = tf.Variable(tf.zeros([10]))
# print(b.shape) (10,)

actv = tf.nn.softmax(tf.matmul(x,W) + b)

// 计算损失
loss = tf.reduce_mean(-tf.reduce_sum(y*tf.log(actv), reduction_indices=1))
learing_rate = 0.01
optm = tf.train.GradientDescentOptimizer(learing_rate).minimize(loss)

# PREDICTION
pred = tf.equal(tf.argmax(actv, 1), tf.argmax(y, 1))  # 每一个样本都会有10分类的概率值
# ACCURACY
accr = tf.reduce_mean(tf.cast(pred, "float")) # 这里将pred 中的 true 和false 转换成0,1,然后就可以做准确率的衡量
# INITIALIZER
init = tf.global_variables_initializer()

training_epochs = 10   #把所有的样本迭代10次
batch_size      = 100  #每进行一次迭代,多少的样本
display_step    = 5
# SESSION
sess = tf.Session()
sess.run(init)     #run一下初始化的操作
# MINI-BATCH LEARNING
for epoch in range(training_epochs):
    avg_cost = 0.
    num_batch = int(minist.train.num_examples/batch_size)  
    for i in range(num_batch): 
        batch_xs, batch_ys = minist.train.next_batch(batch_size)
        feeds = {x: batch_xs, y: batch_ys}
        sess.run(optm, feed_dict= feeds)
        avg_cost += sess.run(loss, feed_dict=feeds)/num_batch  #每一个epoch的打印
    # DISPLAY
    if epoch % display_step == 0:
        feeds_train = {x: batch_xs, y: batch_ys}
        feeds_test = {x: minist.test.images, y: minist.test.labels}
        train_acc = sess.run(accr, feed_dict=feeds_train)
        test_acc = sess.run(accr, feed_dict=feeds_test)
        print ("Epoch: %03d/%03d cost: %.9f train_acc: %.3f test_acc: %.3f" 
               % (epoch, training_epochs, avg_cost, train_acc, test_acc))
print ("DONE")

这里写图片描述

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
使用Tensorflow实现逻辑回归,可以按照以下步骤进行操作。首先,导入所需的包和库,包括Tensorflow和NumPy等。然后,准备数据集,包括输入特征和目标变量。接下来,定义模型的参数,如权重和偏差,并设置模型的超参数,如学习率和迭代次数。然后,定义模型的结构,包括输入占位符、权重和偏差的变量和模型的输出。使用逻辑回归的损失函数和优化算法来训练模型,并在训练过程中对模型进行评估。最后,使用训练好的模型来进行预测。具体的代码和实现细节可以参考引用的资料和。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *3* [【TensorflowTensorflow实现线性回归及逻辑回归](https://blog.csdn.net/Daycym/article/details/89979772)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 50%"] - *2* [tensorflow实现逻辑回归模型](https://download.csdn.net/download/weixin_38707862/12866985)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值