Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

It's a good example but I have a question #1

Open
CountChu opened this issue Jun 9, 2020 · 0 comments
Open

It's a good example but I have a question #1

CountChu opened this issue Jun 9, 2020 · 0 comments

Comments

@CountChu
Copy link

CountChu commented Jun 9, 2020

Hi,

I have a question about the code in the file
20180903_Keras_HAR_WISDM_CNN_v1.0_for_medium.py

Normalize features for training data set

df_train['x-axis'] = feature_normalize(df['x-axis'])
df_train['y-axis'] = feature_normalize(df['y-axis'])
df_train['z-axis'] = feature_normalize(df['z-axis'])

Should it be as below?
df_train['x-axis'] = feature_normalize(df_train['x-axis'])
df_train['y-axis'] = feature_normalize(df_train['y-axis'])
df_train['z-axis'] = feature_normalize(df_train['z-axis'])

Regards,
Count Chu

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant