Created
June 15, 2018 06:17
-
-
Save Tathagatd96/5881063fe3a6cb6b731c87849483e209 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Creating Feature Columns | |
feat_cols=[] | |
for cols in df.columns[:-1]: | |
column=tf.feature_column.numeric_column(cols) | |
feat_cols.append(column) | |
print(feat_cols) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment