Skip to content

Commit

Permalink
Working on packaging and documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
csxeba committed Aug 14, 2018
1 parent bbc41c9 commit 6dc163e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions reinforcement/evolution.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from .agentconfig import AgentConfig
from .abstract_agent import AgentBase


class EvolutionStrategies(AgentBase):

def __init__(self, network, agentconfig: AgentConfig, **kw):
super().__init__(network, agentconfig, **kw)


def reset(self):
pass

def sample(self, state, reward):
pass

def accumulate(self, state, reward):
pass

0 comments on commit 6dc163e

Please sign in to comment.