zhm-real 9da3e40db8 add path
2020-06-24 13:43:39 -07:00
2020-06-21 21:50:11 -07:00
2020-06-21 21:57:29 -07:00
2020-06-24 13:43:39 -07:00
2020-06-23 18:46:44 -07:00
2020-06-21 21:57:29 -07:00
2020-06-19 23:45:54 -07:00
2020-06-21 20:56:05 -07:00

Directory Structure

.
└── Search-based Planning
    ├── bfs.py                                  # breadth-first
    ├── dfs.py                                  # depth-first
    ├── dijkstra.py                             # dijkstra
    ├── a_star.py                               # a*
    ├── queue.py                                # FIFO, FILO, Priority queues
    ├── env.py                                  # environment: grid world, motions
    └── plotting.py                             # animation
└── Stochastic Shortest Path
    ├── value_iteration.py                      # value iteration
    ├── policy_iteration.py                     # policy iteration
    ├── Q-value_iteration.py                    # Q-value iteration
    └── Q-policy_iteration.py                   # Q-policy iteration
└── Model-free Control
    ├── Sarsa.py                                # SARSA : on-policy TD control
    └── Q-learning.py                           # Q-learning : off-policy TD control
└── Sampling-based Planning

Animations

Dijkstra's & A*

  • Blue: starting state
  • Green: goal state
dijkstra Astar

Value/Policy/Q-value/Q-policy Iteration

  • Brown: losing states
value iteration value iteration

SARSA(on-policy) & Q-learning(off-policy)

  • Brown: losing states
value iteration value iteration

License

MIT License

S
Description
No description provided
Readme MIT 11 MiB
Languages
Python 100%