Home | History | Annotate | Download | only in estimators

Lines Matching refs:features

51     def feature_engineering_fn(features, labels):
52 _, _ = features, labels
59 def model_fn(features, labels):
63 predictions = features["transformed_x"]
92 def feature_engineering_fn(features, labels):
94 _ = string_ops.string_split(features["x"])
95 features["x"] = constant_op.constant([9.])
97 return features, labels
99 def model_fn(features, labels):
103 predictions = features["x"]
132 def feature_engineering_fn(features, labels):
133 _, _ = features, labels
140 def model_fn(features, labels):
144 predictions = features["x"]