예제 #1
0
파일: models.py 프로젝트: lopuhin/skflow
 def dnn_estimator(X, y):
     """DNN estimator with target predictor function on top."""
     layers = dnn(X, hidden_units)
     return target_predictor_fn(layers, y)
예제 #2
0
파일: models.py 프로젝트: tigerneil/skflow
 def dnn_estimator(X, y):
     """DNN estimator with target predictor function on top."""
     layers = dnn(X, hidden_units)
     return target_predictor_fn(layers, y)
예제 #3
0
파일: models.py 프로젝트: xypan1232/skflow
 def dnn_classifier(X, y):
     layers = dnn(X, hidden_units)
     return target_predictor_fn(layers, y)
예제 #4
0
파일: models.py 프로젝트: grgomez/skflow
 def dnn_classifier(X, y):
     layers = dnn(X, hidden_units)
     return target_predictor_fn(layers, y)