HomeSort by relevance Sort by last modified time
    Searched refs:logit_fn (Results 1 - 8 of 8) sorted by null

  /external/tensorflow/tensorflow/contrib/estimator/python/estimator/
logit_fns.py 15 """Aliases for logit_fn builders used by canned (core) tf.Estimator's.
17 A logit_fn is an abstraction within model_fn that factors out the logit
55 def call_logit_fn(logit_fn, features, mode, params, config):
56 """Calls logit_fn.
58 A utility function that calls the provided logit_fn with the relevant subset
62 logit_fn: A logit_fn as defined above.
69 A logit Tensor, the output of logit_fn.
72 ValueError: if logit_fn does not return a Tensor or a dictionary mapping
75 logit_fn_args = util.fn_args(logit_fn)
    [all...]
  /external/tensorflow/tensorflow/python/estimator/canned/
baseline.py 81 """Function builder for a baseline logit_fn.
89 A logit_fn (see below).
93 """Baseline model logit_fn.
161 logit_fn = _baseline_logit_fn_builder(head.logits_dimension, weight_column)
162 logits = logit_fn(features)
linear.py 71 """Function builder for a linear logit_fn.
79 A logit_fn (see below).
84 """Linear model logit_fn.
156 logit_fn = _linear_logit_fn_builder(
158 logits = logit_fn(features=features)
dnn.py 50 """Function builder for a dnn logit_fn.
64 A logit_fn (see below).
74 """Deep Neural Network logit_fn.
177 logit_fn = _dnn_logit_fn_builder(
184 logits = logit_fn(features=features, mode=mode)
dnn_linear_combined.py 183 logit_fn = linear._linear_logit_fn_builder( # pylint: disable=protected-access
186 linear_logits = logit_fn(features=features)
dnn_testing_utils.py 504 logit_fn = self._dnn_logit_fn_builder(
514 logits = logit_fn(
685 logit_fn = self._dnn_logit_fn_builder(
695 logits = logit_fn(
    [all...]
baseline_test.py     [all...]
linear_testing_utils.py     [all...]

Completed in 126 milliseconds