-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
Hello,
I was checking the train_dt function since my results are not good.
input_type = config.get('input_type', 'coord')
states = np.concatenate(states, axis=0)
if input_type == 'grayscale':
# no normalization needed for cnn
state_mean, state_std = np.array(50), np.array(100)
else:
state_mean, state_std = np.mean(states, axis=0), np.std(states, axis=0) + 1e-6
state_mean[[0,5,10,15,20]] = 0
state_std[[0,5,10,15,20]] = 1
num_timesteps = sum(traj_lens)
what's the meaning of the normalization from 0 to 20 with a step of 5?
Thank you
Metadata
Metadata
Assignees
Labels
No labels