GitXplorerGitXplorer
i

BRTDP-DS-MPI

public
0 stars
2 forks
0 issues

Commits

List of commits on branch master.
Verified
945a5dc6ad1c6a4e85560dcf2623e9fdb56634b5

Update README.md

iinstance01 committed 5 years ago
Verified
ddecc5407399bbcf4baba40dd8dc1a1fd69802c1

Update README.md

iinstance01 committed 5 years ago
Unverified
804249dfa0c529e37ced37d6bcfbc31d0afaf866

Update README.

iinstance01 committed 5 years ago
Unverified
ac6ca0d4e4e808ee28f1b7736011f7f1de56b0c1

Add BRTDP with DS-MPI.

iinstance01 committed 5 years ago
Verified
d0d100ef4dcf45a19cdb75870d38bfa146bde5b5

Update README.md

iinstance01 committed 5 years ago
Verified
1287a421820288e4b52c34f41dae6862804f6f89

Update README.md

iinstance01 committed 5 years ago

README

The README file for this repository.

BRTDP-DS-MPI

DS-MPI is also called Dijkstra Sweep for Monotone Pessimistic Initialization [1]. It is used for finding an efficient upper bound initialization for BRTDP. This repo includes an implementation of BRTDP and DS-MPI.

For all my homies out there struggling to implement DS-MPI.

Watch it visit only a small part of the whole state space!

States visited by BRTDP

[1] McMahan, H. Brendan, Maxim Likhachev, and Geoffrey J. Gordon. "Bounded real-time dynamic programming: RTDP with monotone upper bounds and performance guarantees." Proceedings of the 22nd international conference on Machine learning. ACM, 2005.

osmnx_mdp

This is basically a stripped down version of osmnx_mdp, which solves routing with uncertainty using Markov decision processes.

I decided to keep everything intact so it is clear how BRTDP is used. In this case, a single simulation of an agent trying to get from A to B on the Munich map using BRTDP.

Basically, BRTDP_DS_MPI/algorithm/cpp_brtdp.cpp has the main implementation and BRTDP_DS_MPI/simulation.pyx applies BRTDP.

Running/Development:

sudo docker build -t brtdp-ds-mpi -f Dockerfile .
sudo docker run -v $(pwd):/app -it brtdp-ds-mpi bash

To run the current simulation:

cd BRTDP_DS_MPI
setup
run