资源简介
使用python自己实现神经网络操纵小车,使用TensorFlow框架实现神经网络操纵小车,神经网络入门.
代码片段和文件信息
# 定义网络结构向外提供接口
import tensorflow as tf
def add_layer(inputs in_size out_size activation_function=None):
“““
:param input: 数据输入
:param in_size: 输入大小
:param out_size: 输出大小
:param activation_function: 激活函数(默认没有)
:return:output:数据输出
“““
Weights = tf.Variable(tf.random_normal([in_size out_size]))
biases = tf.Variable(tf.zeros([1 out_size]) + 0.1)
Wx_plus_b = tf.matmul(inputs Weights) + biases
if activation_function is None:
outputs = Wx_plus_b
else:
outputs = activation_function(Wx_plus_b)
return outputs
xs = tf.placeholder(tf.float32 [None 7])
ys = tf.placeholder(tf.float32 [None 2])
# 定义神经网络结构
hidden_layer1 = add_layer(xs 7 30 activation_function=tf.nn.sigmoid)
prediction = add_layer(hidden_layer1 30 2 activation_function=tf.nn.sigmoid)
loss = tf.reduce_mean(tf.reduce_sum(tf.square(ys - prediction) reduction_indices=[1]))
train_step = tf.train.GradientDescentOptimizer(0.1).minimize(loss)
saver = tf.train.Saver()
sess = tf.Session()
saver.restore(sess “model/nn_car“)
def get_res_by_tf(data):
return sess.run(prediction feed_dict={xs: [data]})
# print(sess.run(prediction
# feed_dict={xs: [[94.26076 63.94289 65.73067 198.38091 118.97282 180.00000 5.16617]]}))
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2020-01-29 12:01 RacingGame\
目录 0 2020-01-29 12:01 RacingGame\.idea\
文件 520 2019-12-11 10:38 RacingGame\.idea\RacingGame.iml
目录 0 2019-12-10 09:55 RacingGame\.idea\inspectionProfiles\
文件 174 2019-10-19 10:39 RacingGame\.idea\inspectionProfiles\profiles_settings.xm
文件 2358 2020-01-08 09:56 RacingGame\.idea\markdown-navigator-enh.xm
文件 5426 2020-01-08 09:56 RacingGame\.idea\markdown-navigator.xm
文件 197 2019-12-11 10:38 RacingGame\.idea\misc.xm
文件 279 2019-10-19 10:39 RacingGame\.idea\modules.xm
文件 185 2019-10-30 18:18 RacingGame\.idea\vcs.xm
文件 23069 2020-01-29 12:01 RacingGame\.idea\workspace.xm
目录 0 2020-01-11 23:25 RacingGame\ai_logic_使用tensorflow框架\
文件 8201 2020-01-11 23:25 RacingGame\ai_logic_使用tensorflow框架\MotorRacing.py
文件 0 2019-10-19 10:47 RacingGame\ai_logic_使用tensorflow框架\__init__.py
目录 0 2020-01-09 14:17 RacingGame\ai_logic_使用tensorflow框架\__pycache__\
文件 145 2020-01-08 10:09 RacingGame\ai_logic_使用tensorflow框架\__pycache__\__init__.cpython-37.pyc
文件 1333 2020-01-09 14:17 RacingGame\ai_logic_使用tensorflow框架\__pycache__\ai.cpython-37.pyc
文件 1437 2020-01-09 14:17 RacingGame\ai_logic_使用tensorflow框架\ai.py
目录 0 2020-01-09 10:23 RacingGame\ai_logic_使用tensorflow框架\data\
文件 34068 2019-10-19 18:44 RacingGame\ai_logic_使用tensorflow框架\data\data.txt
文件 8972 2019-10-19 18:44 RacingGame\ai_logic_使用tensorflow框架\data\res.txt
文件 5304 2020-01-09 11:01 RacingGame\ai_logic_使用tensorflow框架\game_ai_test.py
文件 5052 2020-01-09 11:04 RacingGame\ai_logic_使用tensorflow框架\game_generate_data.py
目录 0 2020-01-09 11:02 RacingGame\ai_logic_使用tensorflow框架\model\
文件 69 2020-01-09 11:02 RacingGame\ai_logic_使用tensorflow框架\model\checkpoint
文件 1208 2020-01-09 11:02 RacingGame\ai_logic_使用tensorflow框架\model\nn_car.data-00000-of-00001
文件 214 2020-01-09 11:02 RacingGame\ai_logic_使用tensorflow框架\model\nn_car.index
文件 24461 2020-01-09 11:02 RacingGame\ai_logic_使用tensorflow框架\model\nn_car.me
文件 1690 2020-01-08 11:34 RacingGame\ai_logic_使用tensorflow框架\training_model.py
目录 0 2020-01-09 11:04 RacingGame\ai_logic_自己实现神经网络\
文件 1918 2020-01-08 13:30 RacingGame\ai_logic_自己实现神经网络\Activators.py
............此处省略38个文件信息
相关资源
- Python开发五子棋小游戏
- 基于递归神经网络的广告点击率预估
- python版植物大战僵尸源码
- 卷积神经网络的Python实现【试读】1
- Python雷电飞机大战小游戏
- Make Your Own Neural Network - 搭建自己的神
- python飞机大战项目.zip
- python推箱子游戏
- python贪吃蛇进阶版完整代码
- python游戏编程入门--高清版
- 利用脉冲耦合神经网络的图像处理.
- Python神经网络编程高清,带详细书签
- Python编写的超级马里奥游戏
- Python神经网络编程.zip
- python不使用框架实现卷积神经网络识
- CNN卷积神经网络PYTHON
- python实现的卷积神经网络CNN无框架
- python2.7基于tkinter下实现拼图小游戏
- 卷积神经网络图像识别python代码
- python实现游戏外星人入侵
- Python 摩擦摩擦玻璃球游戏素材
- 卷积神经网络的Python实现 -《卷积神经
- 作业一_BP_SVM_RBF函数拟合.7z
- Python游戏编程入门187365
- python小游戏
- Python - 弹弹堂小游戏
- Python做一个推箱子小游戏
- Michael Nielsen 的《Neural Networks and Deep
- 一款Python自制的斗地主小游戏
- 《Python神经网络编程》中文版PDF+英文
评论
共有 条评论