matlab代码做游戏Matlab
2048
一个在Matlab中使用深度Q学习的代理人玩游戏。
注意!
我从来没有得到过很好学习的这段代码,欢迎进行改进!
如何下载代码:
git--recursive
clone
https://github.com/tambetm/matlab2048.git
该代码使用我的fork实现神经网络。
如何运行:
clear
all;
rng('shuffle');
%
Add
DeepLearnToolbox
to
path
addpath(genpath('DeepLearnToolbox'));
%
How
many
games
to
play
n
=
100;
%
Number
of
groups
for
averaging
k
=
10;
%
Creates
new
agent
with
following
parameters:
opts.exploration_steps
=
0;
opts.exploration_rate
=
0.05;
opts.discount_rate
=
0;
opts.learning_rate
=
0.00
2022-01-04 16:08:25
1.35MB
系统开源
1