提交 43a27b25 authored 作者: AdeB's avatar AdeB

Reformat reference for h_softmax

上级 219d77b0
from __future__ import print_function import warnings
import sys from theano.tensor.nnet.blocksparse import (
from theano.tensor.nnet.blocksparse import * SparseBlockGemv, SparseBlockOuter, sparse_block_dot, sparse_block_gemv,
sparse_block_gemv_inplace, sparse_block_outer, sparse_block_outer_inplace)
print("DEPRECATION: theano.sandbox.blocksparse does not exist anymore," __all__ = [SparseBlockGemv, SparseBlockOuter, sparse_block_dot,
"it has been moved to theano.tensor.nnet.blocksparse.", file=sys.stderr) sparse_block_gemv, sparse_block_gemv_inplace, sparse_block_outer,
sparse_block_outer_inplace]
warnings.warn("DEPRECATION: theano.sandbox.blocksparse does not exist anymore,"
"it has been moved to theano.tensor.nnet.blocksparse.",
category=DeprecationWarning)
...@@ -2059,8 +2059,7 @@ def h_softmax(x, batch_size, n_outputs, n_classes, n_outputs_per_class, ...@@ -2059,8 +2059,7 @@ def h_softmax(x, batch_size, n_outputs, n_classes, n_outputs_per_class,
The architecture is composed of two softmax layers: the first predicts the The architecture is composed of two softmax layers: the first predicts the
class of the input x while the second predicts the output of the input x in class of the input x while the second predicts the output of the input x in
the predicted class. the predicted class.
More explanations can be found in the original paper: More explanations can be found in the original paper [1]_.
http://arxiv.org/abs/cs/0108006.
If target is specified, it will only compute the outputs of the If target is specified, it will only compute the outputs of the
corresponding targets. Otherwise, if target is None, it will compute all corresponding targets. Otherwise, if target is None, it will compute all
...@@ -2074,35 +2073,26 @@ def h_softmax(x, batch_size, n_outputs, n_classes, n_outputs_per_class, ...@@ -2074,35 +2073,26 @@ def h_softmax(x, batch_size, n_outputs, n_classes, n_outputs_per_class,
---------- ----------
x: tensor of shape (batch_size, number of features) x: tensor of shape (batch_size, number of features)
the minibatch input of the two-layer hierarchical softmax. the minibatch input of the two-layer hierarchical softmax.
batch_size: int batch_size: int
the size of the minibatch input x. the size of the minibatch input x.
n_outputs: int n_outputs: int
the number of outputs. the number of outputs.
n_classes: int n_classes: int
the number of classes of the two-layer hierarchical softmax. It the number of classes of the two-layer hierarchical softmax. It
corresponds to the number of outputs of the first softmax. See note at corresponds to the number of outputs of the first softmax. See note at
the end. the end.
n_outputs_per_class: int n_outputs_per_class: int
the number of outputs per class. See note at the end. the number of outputs per class. See note at the end.
W1: tensor of shape (number of features of the input x, n_classes) W1: tensor of shape (number of features of the input x, n_classes)
the weight matrix of the first softmax, which maps the input x to the the weight matrix of the first softmax, which maps the input x to the
probabilities of the classes. probabilities of the classes.
b1: tensor of shape (n_classes,) b1: tensor of shape (n_classes,)
the bias vector of the first softmax layer. the bias vector of the first softmax layer.
W2: tensor of shape (n_classes, number of features of the input x, n_outputs_per_class) W2: tensor of shape (n_classes, number of features of the input x, n_outputs_per_class)
the weight matrix of the second softmax, which maps the input x to the weight matrix of the second softmax, which maps the input x to
the probabilities of the outputs. the probabilities of the outputs.
b2: tensor of shape (n_classes, n_outputs_per_class) b2: tensor of shape (n_classes, n_outputs_per_class)
the bias vector of the second softmax layer. the bias vector of the second softmax layer.
target: tensor of shape either (batch_size,) or (batch_size, 1) target: tensor of shape either (batch_size,) or (batch_size, 1)
(optional, default None) (optional, default None)
contains the indices of the targets for the minibatch contains the indices of the targets for the minibatch
...@@ -2112,14 +2102,14 @@ def h_softmax(x, batch_size, n_outputs, n_classes, n_outputs_per_class, ...@@ -2112,14 +2102,14 @@ def h_softmax(x, batch_size, n_outputs, n_classes, n_outputs_per_class,
Returns Returns
------- -------
tensor of shape (batch_size, n_outputs) or (batch_size, 1) output_probs: tensor of shape (batch_size, n_outputs) or (batch_size, 1)
Output of the two-layer hierarchical softmax for input x. If target is Output of the two-layer hierarchical softmax for input x. If target is
not specified (None), then all the outputs are computed and the not specified (None), then all the outputs are computed and the
returned tensor has shape (batch_size, n_outputs). Otherwise, when returned tensor has shape (batch_size, n_outputs). Otherwise, when
target is specified, only the corresponding outputs are computed and target is specified, only the corresponding outputs are computed and
the returned tensor has thus shape (batch_size, 1). the returned tensor has thus shape (batch_size, 1).
Notes: Notes
----- -----
The product of n_outputs_per_class and n_classes has to be greater or equal The product of n_outputs_per_class and n_classes has to be greater or equal
to n_outputs. If it is strictly greater, then the irrelevant outputs will to n_outputs. If it is strictly greater, then the irrelevant outputs will
...@@ -2128,6 +2118,11 @@ def h_softmax(x, batch_size, n_outputs, n_classes, n_outputs_per_class, ...@@ -2128,6 +2118,11 @@ def h_softmax(x, batch_size, n_outputs, n_classes, n_outputs_per_class,
dimensions of the tensors of W1, b1, W2 and b2. dimensions of the tensors of W1, b1, W2 and b2.
The most computational efficient configuration is when n_outputs_per_class The most computational efficient configuration is when n_outputs_per_class
and n_classes are equal to the square root of n_outputs. and n_classes are equal to the square root of n_outputs.
References
----------
.. [1] J. Goodman, "Classes for Fast Maximum Entropy Training,"
ICASSP, 2001, <http://arxiv.org/abs/cs/0108006>`.
""" """
# First softmax that computes the probabilities of belonging to each class # First softmax that computes the probabilities of belonging to each class
......
...@@ -1510,6 +1510,3 @@ def test_h_softmax(): ...@@ -1510,6 +1510,3 @@ def test_h_softmax():
assert(fun_output_tg(x_mat, y_mat).shape == (batch_size,)) assert(fun_output_tg(x_mat, y_mat).shape == (batch_size,))
assert(fun_output(x_mat).shape == (batch_size, output_size)) assert(fun_output(x_mat).shape == (batch_size, output_size))
if __name__ == '__main__':
unittest.main()
\ No newline at end of file
...@@ -104,7 +104,6 @@ whitelist_flake8 = [ ...@@ -104,7 +104,6 @@ whitelist_flake8 = [
"sandbox/theano_object.py", "sandbox/theano_object.py",
"sandbox/scan.py", "sandbox/scan.py",
"sandbox/symbolic_module.py", "sandbox/symbolic_module.py",
"sandbox/blocksparse.py",
"sandbox/conv.py", "sandbox/conv.py",
"sandbox/debug.py", "sandbox/debug.py",
"sandbox/tests/test_theano_object.py", "sandbox/tests/test_theano_object.py",
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论