Skip to content
Snippets Groups Projects
Commit fea7ded7 authored by Erik Nygren's avatar Erik Nygren
Browse files

slight shift in the normlazation value range

parent b7897a7f
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ def norm_obs_clip(obs, clip_min=-1, clip_max=1, fixed_radius=0):
if fixed_radius > 0:
max_obs = fixed_radius
else:
max_obs = max(1, max_lt(obs, 1000))
max_obs = max(1, max_lt(obs, 1000)) + 1
min_obs = 0 # min(max_obs, min_lt(obs, 0))
......
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