
- import tensorflow as tf
- from tensorflow.examples.tutorials.mnist import input_data
- mnist=input_data.read_data_sets("/home/yxcx/tf_data",one_hot=True)
- import os
- os.environ["CUDA_VISIBLE_DEVICES"]="0"
- #Parameters
- learning_rate=0.01
- training_epochs=25
- batch_size=100
- display_step=1
- #tf Graph Input
- x=tf.placeholder(tf.float32,[None,784])
- y=tf.placeholder(tf.float32,[None,10])
- #Set model weights
- W=tf.Variable(tf.zeros([784,10]))
- b=tf.Variable(tf.zeros([10]))
- #Construct model
- pred=tf.nn.softmax(tf.matmul(x,W)+b)
- #Minimize error using cross entropy
- cost=tf.reduce_mean(-tf.reduce_sum(y*tf.log(pred),reduction_indices=1))
- #Gradient Descent
- optimizer=tf.train.GradientDescentOptimizer(learning_rate).minimize(cost)
- #Initialize the variables
- init=tf.global_variables_initializer()
- #Start training
- with tf.Session() as sess:
- sess.run(init)
- #Training cycle
- for epoch in range(training_epochs):
- avg_cost=0
- total_batch=int(mnist.train.num_examples/batch_size)
- # loop over all batches
- for i in range(total_batch):
- batch_xs,batch_ys=mnist.train.next_batch(batch_size)
- #Fit training using batch data
- _,c=sess.run([optimizer,cost],feed_dict={x:batch_xs,y:batch_ys})
- #Conpute average loss
- avg_cost+= c/total_batch
- if (epoch+1) % display_step==0:
- print("Epoch:",'%04d' % (epoch+1),"Cost:" ,"{:.09f}".format(avg_cost))
- print("Optimization Finished!")
- #Test model
- correct_prediction=tf.equal(tf.argmax(pred,1),tf.argmax(y,1))
- # Calculate accuracy for 3000 examples
- accuracy=tf.reduce_mean(tf.cast(correct_prediction,tf.float32))
- print("Accuracy:",accuracy.eval({x:mnist.test.images[:3000],y:mnist.test.labels[:3000]}))

posted @
2024-01-17 21:26
冉子旭
阅读(
11)
评论()
编辑
收藏
举报
点击右上角即可分享
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构