Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 701 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 701 Bytes

Entropy-regularized Point-based Value Iteration

Build Status

Entropy regularized point-based value iteration solver for the POMDPs.jl framework.

Installation

From the julia REPL,

]add [email protected]:hdelecki/EntropyRegularizedPBVI.jl.git

Usage

using EntropyRegularizedPBVI
using POMDPModels

pomdp = TigerPOMDP()

solver = ERPBVISolver(max_iterations=10, ϵ=0.1, λ=0.1, verbose=true)

policy = solve(solver, pomdp)