설명 없음

zhm-real 5ccc649dc1 update 5 년 전
Model-free Control e477cb2e4c update 5 년 전
Search-based Planning 5ccc649dc1 update 5 년 전
Stochastic Shortest Path f8430b8273 update 5 년 전
README.md 68edcb939e 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
└── Sampling-based Planning
    ├── Sarsa.py                                # SARSA : on-policy TD control
    └── Q-learning.py                           # Q-learning : off-policy TD control
└── Model-free Control