mirror of
https://github.com/zhm-real/PathPlanning.git
synced 2026-08-30 00:50:46 +08:00
110 lines
5.9 KiB
Markdown
110 lines
5.9 KiB
Markdown
Directory Structure
|
|
------
|
|
.
|
|
└── Search-based Planning
|
|
└── Search_2D
|
|
├── bfs.py # breadth-first searching
|
|
├── dfs.py # depth-first searching
|
|
├── dijkstra.py # dijkstra's
|
|
├── a_star.py # A*
|
|
├── bidirectional_a_star.py # Bidirectional A*
|
|
├── ARAstar.py # Anytime Reparing A*
|
|
├── IDAstar.py # Iteratively Deepening A*
|
|
├── LRTAstar.py # Learning Real-time A*
|
|
├── RTAAstar.py # Real-time Adaptive A*
|
|
├── LPAstar.py # Lifelong Planning A*
|
|
├── D_star.py # D* (Dynamic A*)
|
|
└── D_star_Lite.py # D* Lite
|
|
└── Search_3D
|
|
├── Astar3D.py # A*_3D
|
|
├── bidirectional_Astar3D.py # Bidirectional A*_3D
|
|
├── RTA_Astar3D.py # Real-time Adaptive A*_3D
|
|
└── LRT_Astar3D.py # Learning Real-time A*_3D
|
|
└── Sampling-based Planning
|
|
└── rrt_2D
|
|
├── rrt.py # rrt : goal-biased rrt
|
|
└── rrt_star.py
|
|
└── rrt_3D
|
|
├── rrt3D.py # rrt3D : goal-biased rrt3D
|
|
└── rrtstar3D.py
|
|
└── 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
|
|
|
|
## Animations
|
|
### DFS & BFS (Dijkstra)
|
|
* Blue: starting state
|
|
* Green: goal state
|
|
|
|
<div align=right>
|
|
<table>
|
|
<tr>
|
|
<td><img src="https://github.com/zhm-real/path-planning-algorithms/blob/master/Search-based%20Planning/gif/DFS.gif" alt="dfs" width="400"/></a></td>
|
|
<td><img src="https://github.com/zhm-real/path-planning-algorithms/blob/master/Search-based%20Planning/gif/BFS.gif" alt="bfs" width="400"/></a></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
### A* and A* Variants
|
|
<div align=right>
|
|
<table>
|
|
<tr>
|
|
<td><img src="https://github.com/zhm-real/path-planning-algorithms/blob/master/Search-based%20Planning/gif/Astar.gif" alt="astar" width="400"/></a></td>
|
|
<td><img src="https://github.com/zhm-real/path-planning-algorithms/blob/master/Search-based%20Planning/gif/Bi-Astar.gif" alt="biastar" width="400"/></a></td>
|
|
</tr>
|
|
</table>
|
|
<table>
|
|
<tr>
|
|
<td><img src="https://github.com/zhm-real/path-planning-algorithms/blob/master/Search-based%20Planning/gif/RepeatedA_star.gif" alt="repeatedastar" width="400"/></a></td>
|
|
<td><img src="https://github.com/zhm-real/path-planning-algorithms/blob/master/Search-based%20Planning/gif/ARA_star.gif" alt="arastar" width="400"/></a></td>
|
|
</tr>
|
|
</table>
|
|
<table>
|
|
<tr>
|
|
<td><img src="https://github.com/zhm-real/path-planning-algorithms/blob/master/Search-based%20Planning/gif/LRTA_star.gif" alt="lrtastar" width="400"/></a></td>
|
|
<td><img src="https://github.com/zhm-real/path-planning-algorithms/blob/master/Search-based%20Planning/gif/RTAA_star.gif" alt="rtaastar" width="400"/></a></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
### Value/Policy/Q-value/Q-policy Iteration
|
|
* Brown: losing states
|
|
<div align=right>
|
|
<table>
|
|
<tr>
|
|
<td><img src="https://github.com/zhm-real/path-planning-algorithms/blob/master/Stochastic%20Shortest%20Path/gif/VI.gif" alt="value iteration" width="400"/></a></td>
|
|
<td><img src="https://github.com/zhm-real/path-planning-algorithms/blob/master/Stochastic%20Shortest%20Path/gif/VI_E.gif" alt="value iteration" width="400"/></a></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
### SARSA(on-policy) & Q-learning(off-policy)
|
|
* Brown: losing states
|
|
<div align=right>
|
|
<table>
|
|
<tr>
|
|
<td><img src="https://github.com/zhm-real/path-planning-algorithms/blob/master/Model-free%20Control/gif/SARSA.gif" alt="value iteration" width="400"/></a></td>
|
|
<td><img src="https://github.com/zhm-real/path-planning-algorithms/blob/master/Model-free%20Control/gif/Qlearning.gif" alt="value iteration" width="400"/></a></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
### Papers
|
|
* [Anytime Repairing A*: ](https://papers.nips.cc/paper/2382-ara-anytime-a-with-provable-bounds-on-sub-optimality.pdf) by Maxim Likhachev, Geoff Gordon and Sebastian Thrun
|
|
* [Lifelong Planning A* ](https://www.cs.cmu.edu/~maxim/files/aij04.pdf) by Sven Koenig, Maxim Likhachev and David Furcy
|
|
* [D*: ](http://web.mit.edu/16.412j/www/html/papers/original_dstar_icra94.pdf) by Anthony Stentz and Is Carnegle Mellon
|
|
* [Focussed D*: ](http://robotics.caltech.edu/~jwb/courses/ME132/handouts/Dstar_ijcai95.pdf) by Anthony Stentz
|
|
* [D* Lite: ](http://idm-lab.org/bib/abstracts/papers/aaai02b.pdf) by Sven Koenig and Maxim Likhachev
|
|
* [Field D*: ](http://robots.stanford.edu/isrr-papers/draft/stentz.pdf) by Dave Ferguson and Anthony Stentz
|
|
* [Theta* & AP Theta*: ](http://idm-lab.org/bib/abstracts/papers/aaai07a.pdf) by Alex Nash, Kenny Daniel and Sven Koenig
|
|
* [Lazy Theta*: ](https://www.aaai.org/ocs/index.php/AAAI/AAAI10/paper/download/1930/1945) by Alex Nash, Sven Koenig and Craig Tovey
|
|
* [Incremental Phi*: ](http://www.cs.cmu.edu/~maxim/files/inctheta_ijcai09.pdf) by Alex Nash, Sven Koenig and Maxim Likhachev
|
|
|
|
## License
|
|
MIT License
|