符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
说明
发展壮大离不开广大客户长期以来的信赖与支持,我们将始终秉承“诚信为本、服务至上”的服务理念,坚持“二合一”的优良服务模式,真诚服务每家企业,认真做好每个细节,不断完善自我,成就企业,实现共赢。行业涉及成都凿毛机等,在重庆网站建设公司、全网整合营销推广、WAP手机网站、VI设计、软件开发等项目上具有丰富的设计经验。本例子利用TensorFlow搭建一个全连接神经网络,实现对MNIST手写数字的识别。
先上代码
from tensorflow.examples.tutorials.mnist import input_data import tensorflow as tf # prepare data mnist = input_data.read_data_sets('MNIST_data', one_hot=True) xs = tf.placeholder(tf.float32, [None, 784]) ys = tf.placeholder(tf.float32, [None, 10]) # the model of the fully-connected network weights = tf.Variable(tf.random_normal([784, 10])) biases = tf.Variable(tf.zeros([1, 10]) + 0.1) outputs = tf.matmul(xs, weights) + biases predictions = tf.nn.softmax(outputs) cross_entropy = tf.reduce_mean(-tf.reduce_sum(ys * tf.log(predictions), reduction_indices=[1])) train_step = tf.train.GradientDescentOptimizer(0.5).minimize(cross_entropy) # compute the accuracy correct_predictions = tf.equal(tf.argmax(predictions, 1), tf.argmax(ys, 1)) accuracy = tf.reduce_mean(tf.cast(correct_predictions, tf.float32)) with tf.Session() as sess: init = tf.global_variables_initializer() sess.run(init) for i in range(1000): batch_xs, batch_ys = mnist.train.next_batch(100) sess.run(train_step, feed_dict={ xs: batch_xs, ys: batch_ys }) if i % 50 == 0: print(sess.run(accuracy, feed_dict={ xs: mnist.test.images, ys: mnist.test.labels }))