Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 3
0
 def dnn_classifier(X, y):
     layers = dnn(X, hidden_units)
     return target_predictor_fn(layers, y)
Ejemplo n.º 4
0
 def dnn_classifier(X, y):
     layers = dnn(X, hidden_units)
     return target_predictor_fn(layers, y)