Sev*_*ren 5 matlab artificial-intelligence machine-learning neural-network q-learning
所以我一直在阅读有关 Q 学习和神经网络的内容。我相信我对此有正确的想法,但我想对我的 NN 代码和 Q 值更新有第二意见。
我已经创建了山车问题和我的神经网络的 MatLab 实现,我正在使用神经网络工具箱来处理 NN 部分。
它是一个由 2 个输入、5-20 个隐藏层(用于实验)和 3 个输出(对应山地车中的动作)组成的网络
隐藏单元设置为 tansig,输出为 purelin,训练函数为 traingdm
这是正确的步骤吗?
现在我不确定这是否正确,因为我必须弄清楚如何正确更新神经网络的权重。
例子:
actions
1 2 3
Qs = 1.3346 -1.9000 0.2371
selected action 3(corresponding to move mountain car forward)
Qs' = 1.3328 -1.8997 0.2463
QTarget=reward+gamma*max(Qs') = -1+1.0*1.3328 = 0.3328
s= [-5.0; 0.0] and Targets = 1.3346 -1.9000 0.3328
Or I have this wrong and the Targets are 0 0 0.3328
since we don't know how good the other actions are..
Run Code Online (Sandbox Code Playgroud)
这是我的Matlab代码(我使用R2011和神经网络工具箱)
%create a neural network
num_hidden=5
num_actions=3
net= newff([-1.2 0.6; -0.07 0.07;], [num_hidden,num_actions], {'tansig', 'purelin'},'traingdm');
%network weight and bias initalization
net= init(net);
%turn off the training window
net.trainParam.showWindow = false;
%neural network training parameters
net.trainParam.lr=0.01;
net.trainParam.mc=0.1;
net.trainParam.epochs=100
%parameters for q learning
epsilon=0.9;
gamma=1.0;
%parameters for Mountain car task
maxEpisodes =10;
maxSteps=5000;
reset=false;
inital_pos=-0.5;
inital_vel=0.0;
%construct the inital state
s=[inital_pos;inital_vel];
Qs=zeros(1,3);
Qs_prime=zeros(1,3);
%training for maxEpisodes
for i=1:maxEpisodes
%each episode is maxSteps long
for j = 1:maxSteps
%run the network and get Q values for current state Qs-> vector of
%current Q values for state s at time t Q(s_t)
Qs=net(s);
%select an action
if (rand() <= epsilon)
%returns max Q value over all actions
[Qs_value a]=max(Qs);
else
%return a random number between 1 and 3(inclusive)
a = randint(1,1,3)+1;
end
%simulate a step of Mountain Car
[s_prime, action, reward, reset] = SimulateMC(s,a);
%get new Q values for S_prime -> Q(s_t+1)
Qs_prime=net(s_prime);
%Compute Qtarget for weight updates given by r+y*max Q(s_t+1) over all
%actions
Q_target = reward+gamma*max(Qs_prime);
%Create a Targets matrix with the orginal state s q-values
Targets=Qs;
%change q-value of the original action to the QTarget
Targets(a)=Q_target;
% update the network for input state s and targets
[net TR]=train(net,s,Targets);
%update the state for next step
s=s_prime;
%display exactly where the car is to user the NN learns if this output reaches -0.45
disp(s(1))
if reset==true
bestSteps=j
break
end
end
%reset for new episode
reset=false;
s=[inital_pos;inital_vel];
end
%test the network
%reset state
s=[inital_pos;inital_vel];
for i=1:maxEpisodes
for j=1:maxSteps
%run the network and get Q values for current state
Qs=net(s);
%select the max action always
[Qs_value a]=max(Qs);
%simulate a step of Mountain Car
[s_prime, action, reward, reset] = SimulateMC(s,a);
s=s_prime;
disp(s(1))
end
s=[inital_pos;inital_vel];
end
Run Code Online (Sandbox Code Playgroud)
谢谢
小智 0
问题表述
使用神经网络来表示价值-动作函数是一个好主意。事实证明,这对于许多应用程序都很有效。然而,Q 函数更自然的表示是一个网络,它接收组合的状态动作向量作为输入并具有标量输出。但只要动作的数量有限且很小,就应该可以像你那样做。请记住,严格来说,您学习的不是 Q(s,a),而是多个值函数 V(s)(每个动作一个),它们共享相同的权重,除了最后一层。
测试
这是对 Q 函数的直接贪婪利用。应该是正确的。
学习
这里有几个陷阱,你必须考虑一下。第一个是缩放。对于神经网络学习,您确实需要将输入缩放到相同的范围。如果您在输出层中使用 S 形激活函数,您可能还需要缩放目标值。
数据效率是另一个需要考虑的问题。您可以使用每个转换示例对网络进行多次更新。学习会更快,但您必须将每个转换样本存储在内存中。
在线与批量:如果存储样本,则可以进行批量学习,并避免最近的样本破坏问题中已经学习的部分的问题。
文学
你应该看看