Example #1
0
 def dnn_estimator(X, y):
     """DNN estimator with target predictor function on top."""
     layers = dnn(X, hidden_units)
     return target_predictor_fn(layers, y)
Example #2
0
 def dnn_estimator(X, y):
     """DNN estimator with target predictor function on top."""
     layers = dnn(X, hidden_units)
     return target_predictor_fn(layers, y)
Example #3
0
 def dnn_classifier(X, y):
     layers = dnn(X, hidden_units)
     return target_predictor_fn(layers, y)
Example #4
0
 def dnn_classifier(X, y):
     layers = dnn(X, hidden_units)
     return target_predictor_fn(layers, y)