Estimator の定義
前の演習では、特徴量カラムのリスト feature_list とデータ入力関数 input_fn() を定義しました。この演習では、その内容を発展させて、入力データを利用する estimator を定義します。
この演習はコースの一部です
Introduction to TensorFlow in Python
実践的なインタラクティブ演習
このサンプルコードを完成させて、この演習に挑戦してみましょう。
# Define the model and set the number of steps
model = estimator.____(feature_columns=feature_list, hidden_units=[____,____])
model.train(input_fn, steps=____)