View source on GitHub
|
A classifier that can establish a simple baseline. (deprecated)
Inherits From: Estimator, Estimator
tf.estimator.BaselineClassifier(
model_dir=None,
n_classes=2,
weight_column=None,
label_vocabulary=None,
optimizer='Ftrl',
config=None,
loss_reduction=tf.losses.Reduction.SUM_OVER_BATCH_SIZE
)
This classifier ignores feature values and will learn to predict the average value of each label. For single-label problems, this will predict the probability distribution of the classes as seen in the labels. For multi-label problems, this will predict the fraction of examples that are positive for each class.
Example:
# Build BaselineClassifier
classifier = tf.estimator.BaselineClassifier(n_classes=3)
# Input builders
def input_fn_train:
# Returns tf.data.Dataset of (x, y) tuple where y represents label's class
# index.
pass
def input_fn_eval:
# Returns tf.data.Dataset of (x, y) tuple where y represents label's class
# index.
pass
# Fit model.
classifier.train(input_fn=input_fn_train)
# Evaluate cross entropy between the test and train labels.
loss = classifier.evaluate(input_fn=input_fn_eval)["loss"]
# predict outputs the probability distribution of the classes as seen in
# training.
predictions = classifier.predict(new_samples)
Input of train and evaluate should have following features,
otherwise there will be a KeyError:
- if
weight_columnis notNone, a feature withkey=weight_columnwhose value is aTensor.
Args |
|---|
model_dir
n_classes
weight_column
NumericColumn created by
tf.feature_column.numeric_column defining feature column representing
weights. It will be multiplied by the loss of the example.
label_vocabulary
[n_classes]
defining the label vocabulary. Only supported for n_classes > 2.
optimizer
tf.keras.optimizers.* object, or callable that
creates the optimizer to use for training. If not specified, will use
Ftrl as the default optimizer.
config
RunConfig object to configure the runtime settings.
loss_reduction
tf.losses.Reduction except NONE. Describes how
to reduce training loss over batch. Defaults to SUM_OVER_BATCH_SIZE.
Raises |
|---|
ValueError
n_classes < 2.
Attributes |
|---|
config
export_savedmodel
model_dir
model_fn
model_fn which is bound to self.params.
params
Methods
eval_dir
eval_dir(
name=None
)
Shows the directory name where evaluation metrics are dumped.
| Args |
|---|
name
| Returns | |
|---|---|
| A string which is the path of directory contains evaluation metrics. |
evaluate
evaluate(
input_fn, steps=None, hooks=None, checkpoint_path=None, name=None
)
Evaluates the model given evaluation data input_fn.
For each step, calls input_fn, which returns one batch of data.
Evaluates until:
stepsbatches are processed, orinput_fnraises an end-of-input exception (tf.errors.OutOfRangeErrororStopIteration).
| Args |
|---|
input_fn
- A
tf.data.Datasetobject: Outputs ofDatasetobject must be a tuple(features, labels)with same constraints as below. - A tuple
(features, labels): Wherefeaturesis atf.Tensoror a dictionary of string feature name toTensorandlabelsis aTensoror a dictionary of string label name toTensor. Bothfeaturesandlabelsare consumed bymodel_fn. They should satisfy the expectation ofmodel_fnfrom inputs.stepsNumber of steps for which to evaluate model. If None, evaluates untilinput_fnraises an end-of-input exception.hooksList of tf.train.SessionRunHooksubclass instances. Used for callbacks inside the evaluation call.checkpoint_pathPath of a specific checkpoint to evaluate. If None, the latest checkpoint inmodel_diris used. If there are no checkpoints inmodel_dir, evaluation is run with newly initializedVariablesinstead of ones restored from checkpoint.nameName of the evaluation if user needs to run multiple evaluations on different data sets, such as on training data vs test data. Metrics for different evaluations are saved in separate folders, and appear separately in tensorboard.
| Returns | |
|---|---|
A dict containing the evaluation metrics specified in model_fn keyed by
name, as well as an entry global_step which contains the value of the
global step for which this evaluation was performed. For canned
estimators, the dict contains the loss (mean loss per mini-batch) and
the average_loss (mean loss per sample). Canned classifiers also return
the accuracy. Canned regressors also return the label/mean and the
prediction/mean.
|
| Raises |
|---|
ValueError
steps <= 0.
experimental_export_all_saved_models
experimental_export_all_saved_models(
export_dir_base,
input_receiver_fn_map,
assets_extra=None,
as_text=False,
checkpoint_path=None
)
Exports a SavedModel with tf.MetaGraphDefs for each requested mode.
For each mode passed in via the input_receiver_fn_map,
this method builds a new graph by calling the input_receiver_fn to obtain
feature and label Tensors. Next, this method calls the Estimator's
model_fn in the passed mode to generate the model graph based on
those features and labels, and restores the given checkpoint
(or, lacking that, the most recent checkpoint) into the graph.
Only one of the modes is used for saving variables to the SavedModel
(order of preference: tf.estimator.ModeKeys.TRAIN,
tf.estimator.ModeKeys.EVAL, then
tf.estimator.ModeKeys.PREDICT), such that up to three
tf.MetaGraphDefs are saved with a single set of variables in a single
SavedModel directory.
For the variables and tf.MetaGraphDefs, a timestamped export directory
below export_dir_base, and writes a SavedModel into it containing the
tf.MetaGraphDef for the given mode and its associated signatures.
For prediction, the exported MetaGraphDef will provide one SignatureDef
for each element of the export_outputs dict returned from the model_fn,
named using the same keys. One of these keys is always
tf.saved_model.signature_constants.DEFAULT_SERVING_SIGNATURE_DEF_KEY,
indicating which signature will be served when a serving request does not
specify one. For each signature, the outputs are provided by the
corresponding tf.estimator.export.ExportOutputs, and the inputs are always
the input receivers provided by the serving_input_receiver_fn.
For training and evaluation, the train_op is stored in an extra
collection, and loss, metrics, and predictions are included in a
SignatureDef for the mode in question.
Extra assets may be written into the SavedModel via the assets_extra
argument. This should be a dict, where each key gives a destination path
(including the filename) relative to the assets.extra directory. The
corresponding value gives the full path of the source file to be copied.
For example, the simple case of copying a single file without renaming it
is specified as {'my_asset_file.txt': '/path/to/my_asset_file.txt'}.
| Args |
|---|
export_dir_base
SavedModels.
input_receiver_fn_map
tf.estimator.ModeKeys to
input_receiver_fn mappings, where the input_receiver_fn is a
function that takes no arguments and returns the appropriate subclass of
InputReceiver.
assets_extra
SavedModel, or None if no extra assets are
needed.
as_text
SavedModel proto in text format.
checkpoint_path
None (the default),
the most recent checkpoint found within the model directory is chosen.
| Returns | |
|---|---|
| The path to the exported directory as a bytes object. |
| Raises |
|---|
ValueError
input_receiver_fn is None, no export_outputs
are provided, or no checkpoint can be found.
export_saved_model
export_saved_model(
export_dir_base,
serving_input_receiver_fn,
assets_extra=None,
as_text=False,
checkpoint_path=None,
experimental_mode=ModeKeys.PREDICT
)
Exports inference graph as a SavedModel into the given dir.
For a detailed guide on SavedModel, see Using the SavedModel format.
This method builds a new graph by first calling the
serving_input_receiver_fn to obtain feature Tensors, and then calling
this Estimator's model_fn to generate the model graph based on those
features. It restores the given checkpoint (or, lacking that, the most
recent checkpoint) into this graph in a fresh session. Finally it creates
a timestamped export directory below the given export_dir_base, and writes
a SavedModel into it containing a single tf.MetaGraphDef saved from this
session.
The exported MetaGraphDef will provide one SignatureDef for each
element of the export_outputs dict returned from the model_fn, named
using the same keys. One of these keys is always
tf.saved_model.signature_constants.DEFAULT_SERVING_SIGNATURE_DEF_KEY,
indicating which signature will be served when a serving request does not
specify one. For each signature, the outputs are provided by the
corresponding tf.estimator.export.ExportOutputs, and the inputs are always
the input receivers provided by the serving_input_receiver_fn.
Extra assets may be written into the SavedModel via the assets_extra
argument. This should be a dict, where each key gives a destination path
(including the filename) relative to the assets.extra directory. The
corresponding value gives the full path of the source file to be copied.
For example, the simple case of copying a single file without renaming it
is specified as {'my_asset_file.txt': '/path/to/my_asset_file.txt'}.
The experimental_mode parameter can be used to export a single
train/eval/predict graph as a SavedModel.
See experimental_export_all_saved_models for full docs.
| Args |
|---|
export_dir_base
SavedModels.
serving_input_receiver_fn
tf.estimator.export.ServingInputReceiver or
tf.estimator.export.TensorServingInputReceiver.
assets_extra
SavedModel, or None if no extra assets are
needed.
as_text
SavedModel proto in text format.
checkpoint_path
None (the default),
the most recent checkpoint found within the model directory is chosen.
experimental_mode
tf.estimator.ModeKeys value indicating with mode will
be exported. Note that this feature is experimental.
| Returns | |
|---|---|
| The path to the exported directory as a bytes object. |
| Raises |
|---|
ValueError
serving_input_receiver_fn is provided, no
export_outputs are provided, or no checkpoint can be found.
get_variable_names
get_variable_names()
Returns list of all variable names in this model.
| Returns | |
|---|---|
| List of names. |
| Raises |
|---|
ValueError
Estimator has not produced a checkpoint yet.
get_variable_value
get_variable_value(
name
)
Returns value of the variable given by name.
| Args |
|---|
name
| Returns | |
|---|---|
| Numpy array - value of the tensor. |
| Raises |
|---|
ValueError
Estimator has not produced a checkpoint yet.
latest_checkpoint
latest_checkpoint()
Finds the filename of the latest saved checkpoint file in model_dir.
| Returns | |
|---|---|
The full path to the latest checkpoint or None if no checkpoint was
found.
|
predict
predict(
input_fn,
predict_keys=None,
hooks=None,
checkpoint_path=None,
yield_single_examples=True
)
Yields predictions for given features.
Please note that interleaving two predict outputs does not work. See: issue/20506
| Args |
|---|
input_fn
input_fn raises an end-of-input exception
(tf.errors.OutOfRangeError or StopIteration). See Premade
Estimators
for more information. The function should construct and return one of
the following:tf.data.Datasetobject -- Outputs ofDatasetobject must have same constraints as below.- features -- A
tf.Tensoror a dictionary of string feature name toTensor. features are consumed bymodel_fn. They should satisfy the expectation ofmodel_fnfrom inputs. - A tuple, in which case
the first item is extracted as features.
predict_keyslist of str, name of the keys to predict. It is used if thetf.estimator.EstimatorSpec.predictionsis adict. Ifpredict_keysis used then rest of the predictions will be filtered from the dictionary. IfNone, returns all.hooksList of tf.train.SessionRunHooksubclass instances. Used for callbacks inside the prediction call.checkpoint_pathPath of a specific checkpoint to predict. If None, the latest checkpoint inmodel_diris used. If there are no checkpoints inmodel_dir, prediction is run with newly initializedVariablesinstead of ones restored from checkpoint.yield_single_examplesIf False, yields the whole batch as returned by themodel_fninstead of decomposing the batch into individual elements. This is useful ifmodel_fnreturns some tensors whose first dimension is not equal to the batch size.
| Yields | |
|---|---|
Evaluated values of predictions tensors.
|
| Raises |
|---|
ValueError
yield_single_examples is True.
ValueError
predict_keys and
predictions. For example if predict_keys is not None but
tf.estimator.EstimatorSpec.predictions is not a dict.
train
train(
input_fn, hooks=None, steps=None, max_steps=None, saving_listeners=None
)
Trains a model given training data input_fn.
| Args |
|---|
input_fn
- A
tf.data.Datasetobject: Outputs ofDatasetobject must be a tuple(features, labels)with same constraints as below. - A tuple
(features, labels): Wherefeaturesis atf.Tensoror a dictionary of string feature name toTensorandlabelsis aTensoror a dictionary of string label name toTensor. Bothfeaturesandlabelsare consumed bymodel_fn. They should satisfy the expectation ofmodel_fnfrom inputs.hooksList of tf.train.SessionRunHooksubclass instances. Used for callbacks inside the training loop.stepsNumber of steps for which to train the model. If None, train forever or train untilinput_fngenerates thetf.errors.OutOfRangeerror orStopIterationexception.stepsworks incrementally. If you call two timestrain(steps=10)then training occurs in total 20 steps. IfOutOfRangeorStopIterationoccurs in the middle, training stops before 20 steps. If you don't want to have incremental behavior please setmax_stepsinstead. If set,max_stepsmust beNone.max_stepsNumber of total steps for which to train model. If None, train forever or train untilinput_fngenerates thetf.errors.OutOfRangeerror orStopIterationexception. If set,stepsmust beNone. IfOutOfRangeorStopIterationoccurs in the middle, training stops beforemax_stepssteps. Two calls totrain(steps=100)means 200 training iterations. On the other hand, two calls totrain(max_steps=100)means that the second call will not do any iteration since first call did all 100 steps.saving_listenerslist of CheckpointSaverListenerobjects. Used for callbacks that run immediately before or after checkpoint savings.
| Returns | |
|---|---|
self, for chaining.
|
| Raises |
|---|
ValueError
steps and max_steps are not None.
ValueError
steps or max_steps <= 0.
eager compatibility
Estimators can be used while eager execution is enabled. Note that input_fn
and all hooks are executed inside a graph context, so they have to be written
to be compatible with graph mode. Note that input_fn code using tf.data
generally works in both graph and eager modes.
View source on GitHub