POMDPXFiles.jl

Package for generating and parsing .pomdpx files for SARSOP
Author JuliaPOMDP
Popularity
4 Stars
Updated Last
12 Months Ago
Started In
July 2015

POMDPXFiles

Build Status codecov

This module provides an interface for generating .pomdpx files that can be used with the SARSOP.jl. This module leverages the API defined in POMDPs.jl.

Installation

Pkg.add("POMDPXFiles")

The module provides an interface for generating files for both POMDPs and MOMDPs.

Module Types

  • AbstractPOMDPXFile
  • POMDPXFile
  • MOMDPXFile

Usage

Make sure that your model is defined according to the API in POMDPs.jl.

pomdp = YourPOMDP() # intialize your pomdp
pomdpx = POMDPX("my_pomdp.pomdpx") # for pomdp
pomdpx = MOMDPX("my_pomdp.pomdpx") # for momdp
write(pomdp, pomdpx) # creates a pomdpx file called my_pomdp.pomdpx

MOMDPs (Deprecated)

While MOMDPs are no longer officially supported, you can look at how they were handled in an older version of POMDPs.jl in this branch