Нема описа

391311qy 8689d03e6c yq change env3d and plotting пре 5 година
.idea 022d9f4727 update пре 5 година
Model-free Control 5f8ba1601f regulate format пре 5 година
Sampling-based Planning 8689d03e6c yq change env3d and plotting пре 5 година
Search-based Planning dfee5555c5 update RRT* пре 5 година
Stochastic Shortest Path 5f8ba1601f regulate format пре 5 година
LICENSE ae02c14de5 Create LICENSE пре 5 година
README.md 09fe3e787f Update README.md пре 5 година

README.md

Directory Structure

.
└── Search-based Planning
    ├── bfs.py                                  # breadth-first
    ├── dfs.py                                  # depth-first
    ├── dijkstra.py                             # dijkstra
    ├── a_star.py                               # a*
    ├── queue.py                                # FIFO, FILO, Priority queues
    ├── env.py                                  # environment: grid world, motions
    └── plotting.py                             # animation
└── 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
    └── rrt_2D
        ├── rrt.py                              # rrt : goal-biased rrt
        └── rrt_star.py
    └── rrt_3D
        ├── rrt3D.py                            # rrt3D : goal-biased rrt3D
        └── rrtstar3D.py

Animations

Dijkstra's & A*

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

Value/Policy/Q-value/Q-policy Iteration

  • Brown: losing states
    value iteration
    value iteration

SARSA(on-policy) & Q-learning(off-policy)

  • Brown: losing states
    value iteration
    value iteration

License

MIT License