Skip to content
This repository has been archived by the owner on Aug 11, 2023. It is now read-only.

Commit

Permalink
Add GoalState to support goal conditioned reinforcement learning (#121)
Browse files Browse the repository at this point in the history
Add GoalState to support goal conditioned reinforcement learning
  • Loading branch information
sriram13m authored Jan 14, 2021
1 parent 86468f6 commit a5ba00c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/interface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,10 @@ InformationSet() = InformationSet{Any}()
@api struct InternalState{T} <: AbstractStateStyle end
InternalState() = InternalState{Any}()

"Use it to represent the [goal state](http://proceedings.mlr.press/v37/schaul15.pdf)"
@api struct GoalState{T} <: AbstractStateStyle end
GoalState() = GoalState{Any}()

"""
Sometimes people from different field talk about the same thing with a different
name. Here we set the `Observation{Any}()` as the default state style in this
Expand Down

0 comments on commit a5ba00c

Please sign in to comment.