LABEL / Q-Learning

#Q-Learning

1 posts

q learning maze

q learning python3 Copy import numpy as np import random import os import time # 定義迷宮地圖 maze = np . array ([ [ 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 ], [ 0 , 1 , 0 , 1 , 1 , 1 , 0 , 0 ], [ 0 , 0 , 0…

AI & Data
q learning maze