Нема описа

zhm-real d8a66ff5e7 Update workspace.xml пре 5 година
Model-free Control e477cb2e4c update пре 5 година
Search-based Planning d8a66ff5e7 Update workspace.xml пре 5 година
Stochastic Shortest Path f8430b8273 update пре 5 година
LICENSE ae02c14de5 Create LICENSE пре 5 година
README.md 4dd43bc122 Update README.md пре 5 година

README.md

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

Animations

Dijkstra's & A*

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

License

MIT License