tf.contrib.learn.TensorFlowRNNClassifier.predict_proba(x, batch_size=None)
Predict class probability of the input samples x
.
Args:
-
x
: array-like matrix, [n_samples, n_features...] or iterator. -
batch_size
: If test set is too big, use batch size to split it into mini batches. By default the batch_size member variable is used.
Returns:
-
y
: array of shape [n_samples, n_classes]. The predicted probabilities for each class.
Please login to continue.