tf.contrib.learn.TensorFlowRNNClassifier.get_params()

tf.contrib.learn.TensorFlowRNNClassifier.get_params(deep=True) Get parameters for this estimator. Args: deep: boolean, optional If True, will return the parameters for this estimator and contained subobjects that are estimators. Returns: params : mapping of string to any Parameter names mapped to their values.

tf.contrib.learn.TensorFlowRNNClassifier.get_variable_value()

tf.contrib.learn.TensorFlowRNNClassifier.get_variable_value(name) Returns value of the variable given by name. Args: name: string, name of the tensor. Returns: Numpy array - value of the tensor.

tf.contrib.learn.TensorFlowRNNClassifier.export()

tf.contrib.learn.TensorFlowRNNClassifier.export(*args, **kwargs) Exports inference graph into given dir. (deprecated arguments) SOME ARGUMENTS ARE DEPRECATED. They will be removed after 2016-09-23. Instructions for updating: The signature of the input_fn accepted by export is changing to be consistent with what's used by tf.Learn Estimator's train/evaluate. input_fn (and in most cases, input_feature_key) will become required args, and use_deprecated_input_fn will default to False and be remove

tf.contrib.learn.TensorFlowRNNClassifier.fit()

tf.contrib.learn.TensorFlowRNNClassifier.fit(x, y, steps=None, monitors=None, logdir=None) Neural network model from provided model_fn and training data. Note: called first time constructs the graph and initializers variables. Consecutives times it will continue training the same model. This logic follows partial_fit() interface in scikit-learn. To restart learning, create new estimator. Args: x: matrix or tensor of shape [n_samples, n_features...]. Can be iterator that returns arrays of featu

tf.contrib.learn.TensorFlowRNNClassifier.evaluate()

tf.contrib.learn.TensorFlowRNNClassifier.evaluate(x=None, y=None, input_fn=None, feed_fn=None, batch_size=None, steps=None, metrics=None, name=None) Evaluates given model with provided evaluation data. See superclass Estimator for more details. Args: x: features. y: targets. input_fn: Input function. feed_fn: Function creating a feed dict every time it is called. batch_size: minibatch size to use on the input. steps: Number of steps for which to evaluate model. metrics: Dict of metric o

tf.contrib.learn.TensorFlowRNNClassifier.config

tf.contrib.learn.TensorFlowRNNClassifier.config

tf.contrib.learn.TensorFlowRNNClassifier.bias_

tf.contrib.learn.TensorFlowRNNClassifier.bias_ Returns bias of the rnn layer.

tf.contrib.learn.TensorFlowEstimator.__repr__()

tf.contrib.learn.TensorFlowEstimator.__repr__()

tf.contrib.learn.TensorFlowRNNClassifier

class tf.contrib.learn.TensorFlowRNNClassifier TensorFlow RNN Classifier model.

tf.contrib.learn.TensorFlowEstimator.save()

tf.contrib.learn.TensorFlowEstimator.save(path) Saves checkpoints and graph to given path. Args: path: Folder to save model to.