November 2018
Intermediate to advanced
322 pages
7h 54m
English
In this section, we shall build the gradient boosted trees model for detecting exoplanets using the Kepler dataset. Let us follow these steps in the Jupyter Notebook to build and train the exoplanet finder model:
numeric_column_headers = x_train.columns.values.tolist()
bc_fn = tf.feature_column.bucketized_columnnc_fn = tf.feature_column.numeric_columnbucketized_features = [bc_fn(source_column=nc_fn(key=column), boundaries=[x_train[column].mean()]) for column ...
Read now
Unlock full access