2020-06-19 17:37:53 -07:00
2020-06-20 12:46:49 -07:00
2020-06-19 15:15:10 -07:00
2020-06-19 23:45:54 -07:00
2020-06-20 00:10:50 -07:00

Directory Structure

.
└── Search-based Planning
    ├── bfs.py                                  # breadth-first
    ├── dfs.py                                  # depth-first
    ├── dijkstra.py                             # dijkstra's
    ├── a_star.py                               # a*
    ├── queue.py                                # FIFO, FILO, Priority queues
    ├── env.py                                  # environment: working space
    ├── motion_model.py                         # motion model, feasible input
    └── tools.py                                # animation, figure generation ...
└── 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

License

MIT License

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