码迷,mamicode.com
首页 > 其他好文 > 详细

Tensorflow 搭建自己的神经网络(一)

时间:2019-04-03 21:55:01      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:www   add   die   weight   struct   optimize   range   ant   counter   

下述几段代码,是看b站上莫凡的视频学习的:

import tensorflow as tf
import numpy as np

#creat da
x_data = np.random.rand(100).astype(np.float32)
y_data = x_data * 0.1 + 0.3

#create tensorflow structure start
Weights = tf.Variable(tf.random_uniform([1], -1, 0, 1))
biases = tf.Variable(tf.zeros([1]))

y=Weights * x_data+biases

loss = tf.reduce_mean(tf.square(y-y_data))
optimizer = tf.train.GradientDescentOptimizer(0.5)
train = optimizer.minimize(loss)

init = tf.initialize_all_variables()
#create tensorflow structure end

sess = tf.Session()
sess.run(init) #Very inmportant
step in range(201):
    sess.run(train)
    if(step % 20 == 0):
        print(step,sess.run(Weights), sess.run(biases))

 

import numpy as np
import tensorflow as tf

state = tf.Variable(0,name = "counter")
one = tf.constant(1)

new_value = tf.add(state, )
update = tf.assign(state, new_value)
init = tf.global_variables_initializer()

with tf.Session() as sess:
    sess.run(init)
    for _ in range(3):
        sess.run(update)
        print(sess.run(state))

 

Tensorflow 搭建自己的神经网络(一)

标签:www   add   die   weight   struct   optimize   range   ant   counter   

原文地址:https://www.cnblogs.com/exciting/p/10651671.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!