强化学习第一课 Q-Learning

解决问题:从任何位置到6

视频课程地址:

强化学习算法系列教程及代码实现-Q-Learning_哔哩哔哩_bilibili

相应代码:

import numpy as np
import random

q = np.zeros((7, 7))
q = np.matrix(q)

r = np.array([[-1, -1, -1, 0, -1, -1, -1],
              [-1, -1, 0, -1, -1, -1, -1],
              [-1, 0, -1, 0, -1, 0, -1],
              [0, -1, 0, -1, 0, -1, -1],
              [-1, -1, -1, 0, -1, 0, 100],
              [-1, -1, 0, -1, 0, -1, 100],
              [-1, -1, -1, -1, 0, 0, 100]])
r = np.matrix(r)

gamma = 0.8
for i in range(1000):
    state = random.randint(0, 6)
    while state != 6:
        r_pos_action = []
        for action in range(7):
            if r[state, action] >= 0:
                r_pos_action.append(action)
        next_state = r_pos_action[random.randint(0, len(r_pos_action) - 1)]
        q[state, next_state] = r[state, next_state] + gamma * q[next_state].max()
        state = next_state


print(q)

state = random.randint(0, 6)
print("机器人处于{}".format(state))
count = 0
while state != 6:
    if count > 20:
        print("fail")
        break
    q_max = q[state].max()

    q_max_action = []
    for action in range(7):
        if q[state, action] == q_max:
            q_max_action.append(action)
    next_state = q_max_action[random.randint(0, len(q_max_action) - 1)]
    print('机器人 goes to {} 。'.format(next_state))
    state = next_state
    count += 1
  • 27
    点赞
  • 24
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值