Skip to content
Snippets Groups Projects
Commit a32ffd9e authored by u214892's avatar u214892
Browse files

#42 run baselines in ci

parent c07b470f
No related branches found
No related tags found
No related merge requests found
...@@ -153,7 +153,9 @@ def main(argv): ...@@ -153,7 +153,9 @@ def main(argv):
if demo: if demo:
eps = 0 eps = 0
# action = agent.act(np.array(obs[a]), eps=eps) # action = agent.act(np.array(obs[a]), eps=eps)
print("before act")
action = agent.act(agent_obs[a], eps=eps) action = agent.act(agent_obs[a], eps=eps)
print("after act")
action_prob[action] += 1 action_prob[action] += 1
action_dict.update({a: action}) action_dict.update({a: action})
# Environment step # Environment step
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment