Huiming Zhou a335e148bf Update README.md
update
2020-06-19 19:00:08 -07:00
2020-06-19 17:37:53 -07:00
2020-06-19 18:44:35 -07:00
2020-06-19 15:15:10 -07:00
2020-06-19 19:00:08 -07:00

Directory Structure

.
└── Search-based Planning
    ├── bfs.py                          # breadth-first searching
    ├── dfs.py                          # depth-first searching
    ├── dijkstra.py                     # dijkstra's algorithm
    └── a_star.py                       # a* algorithm
└── 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
└── Sampling-based Planning
    ├── Sarsa.py                        # SARSA : on-policy TD control
    └── Q-learning.py                   # Q-learning : off-policy TD control
└── Model-free Control
S
Description
No description provided
Readme MIT 11 MiB
Languages
Python 100%