BaşlayınÜcretsiz Başlayın

Defining Estimators

In the previous exercise, you defined a list of feature columns, feature_list, and a data input function, input_fn(). In this exercise, you will build on that work by defining an estimator that makes use of input data.

Bu egzersiz

Introduction to TensorFlow in Python

kursunun bir parçasıdır
Kursu Görüntüle

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

# Define the model and set the number of steps
model = estimator.____(feature_columns=feature_list, hidden_units=[____,____])
model.train(input_fn, steps=____)
Kodu Düzenle ve Çalıştır