chanelcolgate / hydroelectric-project

0 stars 0 forks source link

Normalize data #7

Open chanelcolgate opened 2 years ago

chanelcolgate commented 2 years ago

Description

Actions

train_mean = train_df.mean()
train_std = train_df.std()

train_df = (train_df - train_mean) / train_std
val_df = (val_df - train_mean) / train_std
test_df = (test_df - train_mean) / train_std

Estimate

Tests