Sin descripción

zhm-real b2e489448a update hace 5 años
Model-free Control b2e489448a update hace 5 años
Search-based Planning b2e489448a update hace 5 años
Stochastic Shortest Path ef784b90ab update hace 5 años
LICENSE ae02c14de5 Create LICENSE hace 5 años
README.md 70a5af9654 Update README.md hace 5 años

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: 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

Animations

Dijkstra's & A*

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

License

MIT License