Skip to content

Commit

Permalink
Merge branch 'policy_combiner' of https://github.com/tvmarino/ml-comp…
Browse files Browse the repository at this point in the history
…iler-opt into policy_combiner
  • Loading branch information
tvmarino committed Sep 6, 2024
2 parents 47f5efc + 86e4d12 commit bf12cee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler_opt/tools/combine_tfa_policies_lib_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def __init__(self):
super(AddOnePolicy, self).__init__(
time_step_spec=time_step_spec, action_spec=act_spec)

def _distribution(self, t_step):
def _distribution(self, time_step):
pass

def _variables(self):
Expand All @@ -66,7 +66,7 @@ def __init__(self):
super(SubtractOnePolicy, self).__init__(
time_step_spec=time_step_spec, action_spec=act_spec)

def _distribution(self, t_step):
def _distribution(self, time_step):
pass

def _variables(self):
Expand Down

0 comments on commit bf12cee

Please sign in to comment.