nips nips2010 nips2010-99 knowledge-graph by maker-knowledge-mining

99 nips-2010-Gated Softmax Classification


Source: pdf

Author: Roland Memisevic, Christopher Zach, Marc Pollefeys, Geoffrey E. Hinton

Abstract: We describe a ”log-bilinear” model that computes class probabilities by combining an input vector multiplicatively with a vector of binary latent variables. Even though the latent variables can take on exponentially many possible combinations of values, we can efficiently compute the exact probability of each class by marginalizing over the latent variables. This makes it possible to get the exact gradient of the log likelihood. The bilinear score-functions are defined using a three-dimensional weight tensor, and we show that factorizing this tensor allows the model to encode invariances inherent in a task by learning a dictionary of invariant basis functions. Experiments on a set of benchmark problems show that this fully probabilistic model can achieve classification performance that is competitive with (kernel) SVMs, backpropagation, and deep belief nets. 1

Reference: text


Summary: the most important sentenses genereted by tfidf model

sentIndex sentText sentNum sentScore

1 edu Abstract We describe a ”log-bilinear” model that computes class probabilities by combining an input vector multiplicatively with a vector of binary latent variables. [sent-10, score-0.163]

2 Even though the latent variables can take on exponentially many possible combinations of values, we can efficiently compute the exact probability of each class by marginalizing over the latent variables. [sent-11, score-0.137]

3 The bilinear score-functions are defined using a three-dimensional weight tensor, and we show that factorizing this tensor allows the model to encode invariances inherent in a task by learning a dictionary of invariant basis functions. [sent-13, score-0.631]

4 Experiments on a set of benchmark problems show that this fully probabilistic model can achieve classification performance that is competitive with (kernel) SVMs, backpropagation, and deep belief nets. [sent-14, score-0.327]

5 1 Introduction Consider the problem of recognizing an image that contains a single hand-written digit that has been approximately normalized but may have been written in one of a number of different styles. [sent-15, score-0.105]

6 Features extracted from the image often provide much better evidence for a combination of a class and a style than they do for the class alone. [sent-16, score-0.384]

7 For example, a diagonal stroke might be highly compatible with an italic 1 or a non-italic 7. [sent-17, score-0.353]

8 A short piece of horizontal stroke at the top right may be compatible with a very italic 3 or a 5 with a disconnected top. [sent-18, score-0.492]

9 A fat piece of vertical stroke at the bottom of the image near the center may be compatible with a 1 written with a very thick pen or a narrow 8 written with a moderately thick pen so that the bottom loop has merged. [sent-19, score-0.737]

10 This would force the way in which local features were interpreted to be globally consistent about style features such as stroke thickness or ”italicness”. [sent-21, score-0.53]

11 But what if the values of the style features are missing from the training data? [sent-22, score-0.247]

12 We describe a way of learning a large set of binary style features from training data that are only labeled with the class. [sent-23, score-0.247]

13 Our ”gated softmax” model allows the 2K possible combinations of the K learned style features to be integrated out. [sent-24, score-0.333]

14 This makes it easy to compute the posterior probability of a class label on test data and easy to get the exact gradient of the log probability of the correct label on training data. [sent-25, score-0.104]

15 [1] describes a bilinear sparse coding model that, similar to our model, can be trained discriminatively to predict classes. [sent-28, score-0.214]

16 Furthermore, the model parameters, unlike in our case, are not factorized, and as a result the model cannot extract features which are shared among classes. [sent-30, score-0.198]

17 Our model is similar to the top layer of the deep network discussed in [2], again, without factorization and feature sharing. [sent-32, score-0.228]

18 Our model can be viewed also as a “degenerate” special case of the image transformation model described in [3], which replaces the output-image in that model with a “one-hot” encoded class label. [sent-34, score-0.275]

19 We describe the basic model, how it relates to logistic regression, and how to perform learning and inference in the following section. [sent-36, score-0.145]

20 R One of the most common, and certainly oldest, approaches to solving this task is logistic regression, which is based on a log-linear relationship between inputs and labels (see, for example, [4]). [sent-40, score-0.325]

21 In particular, using a set of linear, class-specific score functions t sy (x) = wy x (1) we can obtain probabilities over classes by exponentiating and normalizing: p(y|x) = t exp(wy x) t y exp(wy x) (2) Classification decisons for test-cases xtest are given by arg max p(y|xtest ). [sent-41, score-0.576]

22 Training amounts to 1 adapting the vectors wy by maximizing the average conditional log-probability N α log p(y α |xα ) α α N for a set {(x , y )}α=1 of training cases. [sent-42, score-0.375]

23 In the case of two or more labels, logistic regression is also referred to as the “multinomial logit model” or the “maximum entropy model” [5]. [sent-44, score-0.203]

24 Important properties of logistic regression are that (a) the training objective is convex, so there are no local optima, and (b) the model is probabilistic, hence it comes with well-calibrated estimates of uncertainty in the classification decision (ref. [sent-48, score-0.376]

25 2 A log-bilinear model Logistic regression makes the assumption that classes can be separated in the input space with hyperplanes (up to noise). [sent-53, score-0.157]

26 We take the stance that we do not know what form the separation manifold takes on, and instead introduce a set of probabilistic hidden variables which cooperate to model the decision surface jointly. [sent-57, score-0.18]

27 To obtain classification decisions at test-time and for training the model, we then need to marginalize over these hidden variables. [sent-58, score-0.133]

28 2 h h hk hk f xi xi f f y x y x (a) (b) Figure 1: (a) A log-bilinear model: Binary hidden variables hk can blend in log-linear dependencies that connect input features xi with labels y. [sent-59, score-0.67]

29 More specifically, we consider the following variation of logistic regression: We introduce a vector h of binary latent variables (h1 , . [sent-61, score-0.145]

30 1) with a bilinear score of x and h: sy (x, h) = ht Wy x. [sent-65, score-0.359]

31 (3) The bilinear score combines, quadratically, all pairs of input components xi with hidden variables hk . [sent-66, score-0.481]

32 The score for each class is thus a quadratic product, parameterized by a class-specific matrix Wy . [sent-67, score-0.154]

33 This is in contrast to the inner product, parameterized by class-specific vectors wy , for logistic regression. [sent-68, score-0.478]

34 t y h exp(h Wy x) p(y, h|x) = (4) In contrast to logistic regression, we obtain a distribution over both the hidden variables h and labels y. [sent-70, score-0.291]

35 (5) h∈{0,1}K As with logistic regression, we thus get a distribution over labels y, conditioned on inputs x. [sent-72, score-0.287]

36 3, we obtain the logistic regression score (up to normalization), since the argument in the “exp()” collapses to the class-specific row-vector ht Wy . [sent-76, score-0.405]

37 5 is therefore exactly one logistic classifier, showing that the model is equivalent to a mixture of 2K logistic regressors with shared weights. [sent-78, score-0.386]

38 In the following, we let W denote the three-way tensor of parameters (by “stacking” the matrices Wy ). [sent-80, score-0.102]

39 As we shall show, it is the conditioning on the inputs x that renders this model useful. [sent-86, score-0.137]

40 Note that in our case, the distribution that the model outputs is a distribution over a countable (and, in particular, fairly small2 ) number of possible values, so we can compute the constant Ω = y k (1 + exp( i Wyik xi )), that normalizes the left-hand side in Eqs. [sent-89, score-0.098]

41 3 Sharing features among classes The score (or “activation”) that class label y receives from each of the 2K terms in Eq. [sent-93, score-0.255]

42 In most natural problems, inputs from different classes share the same domain, and therefore show similar characteristics. [sent-99, score-0.136]

43 Note that parameter sharing would not be possible in models like logistic regression or SVMs, which are based on linear score functions. [sent-102, score-0.331]

44 This factorization of a three-way parameter tensor was previously used by [3] to reduce the number of parameters in an unsupervised model of images. [sent-104, score-0.152]

45 Plugging the factorized form for the weight tensor into the definition of the probability (Eq. [sent-105, score-0.102]

46 4) and re-arranging terms yields y h hk Wkf Wyf x xi Wif p(y, h|x) ∝ exp f i (8) k This shows that, after factorizing, we obtain a classification decision by first projecting the input vector x (and the vector of hidden variables h) onto F basis functions, or filters. [sent-106, score-0.371]

47 4 where ay = log 1 + exp k y x h xi Wif )Wkf Wyf ( f . [sent-114, score-0.118]

48 (10) i x Note that in this model, learning of features (the F basis functions W·f ) is tied in with learning of the classifier itself. [sent-115, score-0.102]

49 In contrast to neural networks and deep learners ([11], [12]), the model does not try to learn a feature hierarchy. [sent-116, score-0.228]

50 Instead, learned features are combined multiplicatively with hidden variables and the results added up to provide the inputs to the class-units. [sent-117, score-0.32]

51 In terms of neural networks nomenclature, the factored model can best be thought of as a single-hidden-layer network. [sent-118, score-0.181]

52 4 Interpretation An illustration of the graphical model is shown in Figure 1 (non-factored model on the left, factored model on the right). [sent-121, score-0.281]

53 Each hidden variable hk that is “on” contributes a slice W·k· of the parameter tensor to a blend k hk W·k· of at most K matrices. [sent-122, score-0.531]

54 A single blend is simply a linear logistic classifier. [sent-124, score-0.215]

55 An alternative view is that each output unit y accumulates evidence for or against its class by projecting the input onto K basis functions (the rows of Wy in Eq. [sent-125, score-0.2]

56 Each instantiation of h constitutes one way of combining a subset of basis function responses that are considered to be consistent into a single piece of evidence. [sent-127, score-0.105]

57 The model can accomodate each if necessary by making appropriate use of the hidden variables. [sent-131, score-0.141]

58 The factored model, where basis function responses are computed jointly for all classes and then weighted differently for each class, can be thought of as accumulating evidence accordingly in the “spatial frequency domain”. [sent-132, score-0.274]

59 2) takes the form: ¯ ∂ log p(y|x) = δyy − p(¯|x) σ y ¯ ∂Wyik ¯ xi Wyik hk xi with σ(a) = 1 + exp(−a) −1 . [sent-143, score-0.134]

60 (11) i To compute gradients of the factored model (Section 2. [sent-144, score-0.226]

61 As with logistic regression, we can thus perform gradient based optimization of the model likelihood for training. [sent-149, score-0.195]

62 However, in contrast to logistic regression, the model’s objective function is non-linear, so it can contain local optima. [sent-151, score-0.226]

63 Like logistic regression, and in contrast to SVMs, the model computes probabilities and thus provides well-calibrated estimates of uncertainty in its decisions. [sent-153, score-0.195]

64 6 Optimization The log-probability is non-linear and can contain local optima w. [sent-155, score-0.16]

65 W , so some care has to be taken to obtain good local optima during training. [sent-158, score-0.16]

66 In general we found that simply deploying a generalpurpose conjugate gradient solver on random parameter initializations does not reliably yield good local optima (even though it can provide good solutions in some cases). [sent-159, score-0.218]

67 More specifically, the distribution p(x|y) of inputs given labels is a factored Restricted Boltzmann machine, that can be optimized using contrastive divergence [3]. [sent-163, score-0.273]

68 We found that performing a few iterations of class-conditional optimization as an initialization reliably yields good local optima of the model‘s objective function. [sent-164, score-0.202]

69 This pre-training is reminiscent of training deep networks, which also rely on a pre-training phase. [sent-166, score-0.22]

70 It is possible to perform a different kind of annealing by adding the class-specific and the model’s actual objective function, and slowly reducing the class-specific influence using some weighting scheme. [sent-168, score-0.099]

71 We used both the simple and the annealed optimization in some of our experiments, but did not find clear evidence that annealing leads to better local optima. [sent-169, score-0.14]

72 We found that, given an initialization near a local optimum of the objective function, conjugate gradients can significantly outperform stochastic gradient descent in terms of the speed at which one can optimize both the model’s own objective function and the cost on validation data. [sent-170, score-0.168]

73 In practice, one can add a regularization (or “weight-decay”) penalty −λ W 2 to the objective function, as is common for logistic regression and other classifiers, where λ is chosen by crossvalidation. [sent-171, score-0.245]

74 The benchmark consists of a set of classification problems, that are difficult, because they contain many subtle, and highly complicated, dependencies of classes on inputs. [sent-173, score-0.109]

75 It was initially introduced to evaluate the performance of deep neural networks. [sent-174, score-0.178]

76 We do not make use of any random re-starts or other additional ways to find good local optima of the objective function. [sent-182, score-0.202]

77 For the class-specific initializations, we use a class-specific RBM with binary observables on the datasets “rectangles”, “mnist-rot”, “convex” and “mnist”, because they contain essentially binary inputs (or a heavily-skewed histogram), and Gaussian observables on the others. [sent-183, score-0.181]

78 We also tried “hybrid” approaches on some data-sets where we optimize a sum of the RBM and the model objective function, and decrease the influence of the RBM as training progresses. [sent-185, score-0.134]

79 1 Learning task-dependent invariances The “rectangles” task requires the classification of rectangle images into the classes horizontal vs. [sent-187, score-0.3]

80 Figure 2 (left) shows random sets of 50 rows of the matrix Wy learned by the unfactored model (class horizontal on the top, class vertical on 4 5 An implementation of the model is available at http://learning. [sent-189, score-0.459]

81 com/exdb/mnist/ 6 Figure 2: Left: Class-specific filters learned from the rectangle task – top: filters in support of the label horizontal, bottom: filters in support of the class label vertical. [sent-194, score-0.139]

82 The plot shows that the hidden units, like “Hough-cells”, make it possible to accumulate evidence for the different classes, by essentially counting horizontal and vertical strokes in the images. [sent-199, score-0.357]

83 An example of filters learned by the factored model is shown in Figure 2 (right). [sent-203, score-0.22]

84 The task is classification of rotated digits in this example. [sent-204, score-0.137]

85 In this task, learning invariances with respect to rotation is crucial for achieving good classification performance. [sent-206, score-0.129]

86 The filters resemble basis functions learned by an image transformation model trained to rotate image patches described in [3]. [sent-209, score-0.305]

87 (a) (b) (c) (d) Figure 3: Example images from four of the “deep learning” benchmark tasks: (a) Rectangles (2class): Distinguish horizontal from vertical rectangles; (b) Rotated digits (10-class): Determine the class of the digit; (c) Convex vs. [sent-212, score-0.33]

88 non-convex (2-class): Determine if the image shows a convex or non-convex shape; (d) Rectangles with images (2-class): Like (a), but rectangles are rendered using natural images. [sent-213, score-0.21]

89 For comparison, we also show the error rates achieved with the unfactored model (Section 2. [sent-224, score-0.144]

90 2), which also performs fairly well as compared to deep networks and SVMs, but is significantly weaker in most cases than the factored model. [sent-225, score-0.357]

91 4 Discussion/Future work Several extensions of deep learning methods, including deep kernel methods, have been suggested recently (see, for example, [13], [14]), giving similar performance to the networks that we compare to here. [sent-299, score-0.356]

92 Instead, our model gets its power from the fact that inputs, hidden variables and labels interact in three-way cliques. [sent-301, score-0.196]

93 Factored three-way interactions make it possible to learn task-specific features and to learn transformational invariances inherent in the task at hand. [sent-302, score-0.27]

94 Interestingly, the filters that the model learns (see previous Section; Figure 2) resemble those learned be recent models of image transformations (see, for example, [3]). [sent-305, score-0.247]

95 In fact, learning of invariances in general is typically addressed in the context of learning transformations. [sent-306, score-0.129]

96 In contrast to a model of transformations, it is the classification task that defines the invariances here, and the model learns the invariant representations from that task only. [sent-308, score-0.352]

97 Combining the explicit examples of transformations provided by video sequences with the implicit information about transformational invariances provided by labels is a promising future direction. [sent-309, score-0.29]

98 Another direction is the extension to structured prediction problems, for example, by deploying the model as clique potential in a CRF. [sent-315, score-0.108]

99 Learning to represent spatial transformations with factored higher-order Boltzmann machines. [sent-326, score-0.186]

100 An empirical evaluation of deep architectures on problems with many factors of variation. [sent-353, score-0.178]


similar papers computed by tfidf model

tfidf for this paper:

wordName wordTfidf (topN-words)

[('wy', 0.333), ('wyik', 0.29), ('stroke', 0.234), ('deep', 0.178), ('bilinear', 0.164), ('style', 0.153), ('rectangles', 0.147), ('logistic', 0.145), ('wif', 0.145), ('wyf', 0.145), ('hk', 0.134), ('gated', 0.132), ('factored', 0.131), ('invariances', 0.129), ('geoffrey', 0.124), ('optima', 0.121), ('wkf', 0.116), ('gsm', 0.11), ('tensor', 0.102), ('rbm', 0.101), ('lters', 0.097), ('softmax', 0.095), ('unfactored', 0.094), ('score', 0.092), ('classi', 0.091), ('hidden', 0.091), ('eth', 0.087), ('zurich', 0.087), ('inputs', 0.087), ('horizontal', 0.084), ('boltzmann', 0.082), ('vertical', 0.08), ('nnet', 0.076), ('rajesh', 0.07), ('blend', 0.07), ('ay', 0.066), ('roland', 0.066), ('memisevic', 0.066), ('image', 0.063), ('class', 0.062), ('compatible', 0.061), ('benchmark', 0.06), ('yoshua', 0.06), ('ht', 0.059), ('regression', 0.058), ('deploying', 0.058), ('italic', 0.058), ('strokes', 0.058), ('svmpol', 0.058), ('svmrbf', 0.058), ('vinod', 0.058), ('xtest', 0.058), ('annealing', 0.057), ('switzerland', 0.057), ('piece', 0.055), ('rotated', 0.055), ('labels', 0.055), ('transformations', 0.055), ('exp', 0.052), ('features', 0.052), ('svms', 0.051), ('performer', 0.051), ('factorizing', 0.051), ('collapses', 0.051), ('della', 0.051), ('multiplicatively', 0.051), ('transformational', 0.051), ('model', 0.05), ('basis', 0.05), ('classes', 0.049), ('fairly', 0.048), ('observables', 0.047), ('hugo', 0.047), ('invariant', 0.047), ('shared', 0.046), ('experts', 0.046), ('gradients', 0.045), ('nair', 0.044), ('pen', 0.044), ('sy', 0.044), ('evidence', 0.044), ('digits', 0.044), ('projecting', 0.044), ('digit', 0.042), ('objective', 0.042), ('training', 0.042), ('bottom', 0.04), ('resemble', 0.04), ('larochelle', 0.04), ('local', 0.039), ('combinations', 0.039), ('cation', 0.039), ('learned', 0.039), ('probabilistic', 0.039), ('thick', 0.038), ('marginalization', 0.038), ('interestingly', 0.038), ('task', 0.038), ('sharing', 0.036), ('marginalizing', 0.036)]

similar papers list:

simIndex simValue paperId paperTitle

same-paper 1 0.99999958 99 nips-2010-Gated Softmax Classification

Author: Roland Memisevic, Christopher Zach, Marc Pollefeys, Geoffrey E. Hinton

Abstract: We describe a ”log-bilinear” model that computes class probabilities by combining an input vector multiplicatively with a vector of binary latent variables. Even though the latent variables can take on exponentially many possible combinations of values, we can efficiently compute the exact probability of each class by marginalizing over the latent variables. This makes it possible to get the exact gradient of the log likelihood. The bilinear score-functions are defined using a three-dimensional weight tensor, and we show that factorizing this tensor allows the model to encode invariances inherent in a task by learning a dictionary of invariant basis functions. Experiments on a set of benchmark problems show that this fully probabilistic model can achieve classification performance that is competitive with (kernel) SVMs, backpropagation, and deep belief nets. 1

2 0.18919028 140 nips-2010-Layer-wise analysis of deep networks with Gaussian kernels

Author: Grégoire Montavon, Klaus-Robert Müller, Mikio L. Braun

Abstract: Deep networks can potentially express a learning problem more efficiently than local learning machines. While deep networks outperform local learning machines on some problems, it is still unclear how their nice representation emerges from their complex structure. We present an analysis based on Gaussian kernels that measures how the representation of the learning problem evolves layer after layer as the deep network builds higher-level abstract representations of the input. We use this analysis to show empirically that deep networks build progressively better representations of the learning problem and that the best representations are obtained when the deep network discriminates only in the last layers. 1

3 0.14007264 103 nips-2010-Generating more realistic images using gated MRF's

Author: Marc'aurelio Ranzato, Volodymyr Mnih, Geoffrey E. Hinton

Abstract: Probabilistic models of natural images are usually evaluated by measuring performance on rather indirect tasks, such as denoising and inpainting. A more direct way to evaluate a generative model is to draw samples from it and to check whether statistical properties of the samples match the statistics of natural images. This method is seldom used with high-resolution images, because current models produce samples that are very different from natural images, as assessed by even simple visual inspection. We investigate the reasons for this failure and we show that by augmenting existing models so that there are two sets of latent variables, one set modelling pixel intensities and the other set modelling image-specific pixel covariances, we are able to generate high-resolution images that look much more realistic than before. The overall model can be interpreted as a gated MRF where both pair-wise dependencies and mean intensities of pixels are modulated by the states of latent variables. Finally, we confirm that if we disallow weight-sharing between receptive fields that overlap each other, the gated MRF learns more efficient internal representations, as demonstrated in several recognition tasks. 1 Introduction and Prior Work The study of the statistical properties of natural images has a long history and has influenced many fields, from image processing to computational neuroscience [1]. In this work we focus on probabilistic models of natural images. These models are useful for extracting representations [2, 3, 4] that can be used for discriminative tasks and they can also provide adaptive priors [5, 6, 7] that can be used in applications like denoising and inpainting. Our main focus, however, will be on improving the quality of the generative model, rather than exploring its possible applications. Markov Random Fields (MRF’s) provide a very general framework for modelling natural images. In an MRF, an image is assigned a probability which is a normalized product of potential functions, with each function typically being defined over a subset of the observed variables. In this work we consider a very versatile class of MRF’s in which potential functions are defined over both pixels and latent variables, thus allowing the states of the latent variables to modulate or gate the effective interactions between the pixels. This type of MRF, that we dub gated MRF, was proposed as an image model by Geman and Geman [8]. Welling et al. [9] showed how an MRF in this family1 could be learned for small image patches and their work was extended to high-resolution images by Roth and Black [6] who also demonstrated its success in some practical applications [7]. Besides their practical use, these models were specifically designed to match the statistical properties of natural images, and therefore, it seems natural to evaluate them in those terms. Indeed, several authors [10, 7] have proposed that these models should be evaluated by generating images and 1 Product of Student’s t models (without pooling) may not appear to have latent variables but each potential can be viewed as an infinite mixture of zero-mean Gaussians where the inverse variance of the Gaussian is the latent variable. 1 checking whether the samples match the statistical properties observed in natural images. It is, therefore, very troublesome that none of the existing models can generate good samples, especially for high-resolution images (see for instance fig. 2 in [7] which is one of the best models of highresolution images reported in the literature so far). In fact, as our experiments demonstrate the generated samples from these models are more similar to random images than to natural images! When MRF’s with gated interactions are applied to small image patches, they actually seem to work moderately well, as demonstrated by several authors [11, 12, 13]. The generated patches have some coherent and elongated structure and, like natural image patches, they are predominantly very smooth with sudden outbreaks of strong structure. This is unsurprising because these models have a built-in assumption that images are very smooth with occasional strong violations of smoothness [8, 14, 15]. However, the extension of these patch-based models to high-resolution images by replicating filters across the image has proven to be difficult. The receptive fields that are learned no longer resemble Gabor wavelets but look random [6, 16] and the generated images lack any of the long range structure that is so typical of natural images [7]. The success of these methods in applications such as denoising is a poor measure of the quality of the generative model that has been learned: Setting the parameters to random values works almost as well for eliminating independent Gaussian noise [17], because this can be done quite well by just using a penalty for high-frequency variation. In this work, we show that the generative quality of these models can be drastically improved by jointly modelling both pixel mean intensities and pixel covariances. This can be achieved by using two sets of latent variables, one that gates pair-wise interactions between pixels and another one that sets the mean intensities of pixels, as we already proposed in some earlier work [4]. Here, we show that this modelling choice is crucial to make the gated MRF work well on high-resolution images. Finally, we show that the most widely used method of sharing weights in MRF’s for high-resolution images is overly constrained. Earlier work considered homogeneous MRF’s in which each potential is replicated at all image locations. This has the subtle effect of making learning very difficult because of strong correlations at nearby sites. Following Gregor and LeCun [18] and also Tang and Eliasmith [19], we keep the number of parameters under control by using local potentials, but unlike Roth and Black [6] we only share weights between potentials that do not overlap. 2 Augmenting Gated MRF’s with Mean Hidden Units A Product of Student’s t (PoT) model [15] is a gated MRF defined on small image patches that can be viewed as modelling image-specific, pair-wise relationships between pixel values by using the states of its latent variables. It is very good at representing the fact that two-pixel have very similar intensities and no good at all at modelling what these intensities are. Failure to model the mean also leads to impoverished modelling of the covariances when the input images have nonzero mean intensity. The covariance RBM (cRBM) [20] is another model that shares the same limitation since it only differs from PoT in the distribution of its latent variables: The posterior over the latent variables is a product of Bernoulli distributions instead of Gamma distributions as in PoT. We explain the fundamental limitation of these models by using a simple toy example: Modelling two-pixel images using a cRBM with only one binary hidden unit, see fig. 1. This cRBM assumes that the conditional distribution over the input is a zero-mean Gaussian with a covariance that is determined by the state of the latent variable. Since the latent variable is binary, the cRBM can be viewed as a mixture of two zero-mean full covariance Gaussians. The latent variable uses the pairwise relationship between pixels to decide which of the two covariance matrices should be used to model each image. When the input data is pre-proessed by making each image have zero mean intensity (the empirical histogram is shown in the first row and first column), most images lie near the origin because most of the times nearby pixels are strongly correlated. Less frequently we encounter edge images that exhibit strong anti-correlation between the pixels, as shown by the long tails along the anti-diagonal line. A cRBM could model this data by using two Gaussians (first row and second column): one that is spherical and tight at the origin for smooth images and another one that has a covariance elongated along the anti-diagonal for structured images. If, however, the whole set of images is normalized by subtracting from every pixel the mean value of all pixels over all images (second row and first column), the cRBM fails at modelling structured images (second row and second column). It can fit a Gaussian to the smooth images by discovering 2 Figure 1: In the first row, each image is zero mean. In the second row, the whole set of data points is centered but each image can have non-zero mean. The first column shows 8x8 images picked at random from natural images. The images in the second column are generated by a model that does not account for mean intensity. The images in the third column are generated by a model that has both “mean” and “covariance” hidden units. The contours in the first column show the negative log of the empirical distribution of (tiny) natural two-pixel images (x-axis being the first pixel and the y-axis the second pixel). The plots in the other columns are toy examples showing how each model could represent the empirical distribution using a mixture of Gaussians with components that have one of two possible covariances (corresponding to the state of a binary “covariance” latent variable). Models that can change the means of the Gaussians (mPoT and mcRBM) can represent better structured images (edge images lie along the anti-diagonal and are fitted by the Gaussians shown in red) while the other models (PoT and cRBM) fail, overall when each image can have non-zero mean. the direction of strong correlation along the main diagonal, but it is very likely to fail to discover the direction of anti-correlation, which is crucial to represent discontinuities, because structured images with different mean intensity appear to be evenly spread over the whole input space. If the model has another set of latent variables that can change the means of the Gaussian distributions in the mixture (as explained more formally below and yielding the mPoT and mcRBM models), then the model can represent both changes of mean intensity and the correlational structure of pixels (see last column). The mean latent variables effectively subtract off the relevant mean from each data-point, letting the covariance latent variable capture the covariance structure of the data. As before, the covariance latent variable needs only to select between two covariance matrices. In fact, experiments on real 8x8 image patches confirm these conjectures. Fig. 1 shows samples drawn from PoT and mPoT. mPoT (and similarly mcRBM [4]) is not only better at modelling zero mean images but it can also represent images that have non zero mean intensity well. We now describe mPoT, referring the reader to [4] for a detailed description of mcRBM. In PoT [9] the energy function is: E PoT (x, hc ) = i 1 [hc (1 + (Ci T x)2 ) + (1 − γ) log hc ] i i 2 (1) where x is a vectorized image patch, hc is a vector of Gamma “covariance” latent variables, C is a filter bank matrix and γ is a scalar parameter. The joint probability over input pixels and latent variables is proportional to exp(−E PoT (x, hc )). Therefore, the conditional distribution over the input pixels is a zero-mean Gaussian with covariance equal to: Σc = (Cdiag(hc )C T )−1 . (2) In order to make the mean of the conditional distribution non-zero, we define mPoT as the normalized product of the above zero-mean Gaussian that models the covariance and a spherical covariance Gaussian that models the mean. The overall energy function becomes: E mPoT (x, hc , hm ) = E PoT (x, hc ) + E m (x, hm ) 3 (3) Figure 2: Illustration of different choices of weight-sharing scheme for a RBM. Links converging to one latent variable are filters. Filters with the same color share the same parameters. Kinds of weight-sharing scheme: A) Global, B) Local, C) TConv and D) Conv. E) TConv applied to an image. Cells correspond to neighborhoods to which filters are applied. Cells with the same color share the same parameters. F) 256 filters learned by a Gaussian RBM with TConv weight-sharing scheme on high-resolution natural images. Each filter has size 16x16 pixels and it is applied every 16 pixels in both the horizontal and vertical directions. Filters in position (i, j) and (1, 1) are applied to neighborhoods that are (i, j) pixels away form each other. Best viewed in color. where hm is another set of latent variables that are assumed to be Bernoulli distributed (but other distributions could be used). The new energy term is: E m (x, hm ) = 1 T x x− 2 hm Wj T x j (4) j yielding the following conditional distribution over the input pixels: p(x|hc , hm ) = N (Σ(W hm ), Σ), Σ = (Σc + I)−1 (5) with Σc defined in eq. 2. As desired, the conditional distribution has non-zero mean2 . Patch-based models like PoT have been extended to high-resolution images by using spatially localized filters [6]. While we can subtract off the mean intensity from independent image patches to successfully train PoT, we cannot do that on a high-resolution image because overlapping patches might have different mean. Unfortunately, replicating potentials over the image ignoring variations of mean intensity has been the leading strategy to date [6]3 . This is the major reason why generation of high-resolution images is so poor. Sec. 4 shows that generation can be drastically improved by explicitly accounting for variations of mean intensity, as performed by mPoT and mcRBM. 3 Weight-Sharing Schemes By integrating out the latent variables, we can write the density function of any gated MRF as a normalized product of potential functions (for mPoT refer to eq. 6). In this section we investigate different ways of constraining the parameters of the potentials of a generic MRF. Global: The obvious way to extend a patch-based model like PoT to high-resolution images is to define potentials over the whole image; we call this scheme global. This is not practical because 1) the number of parameters grows about quadratically with the size of the image making training too slow, 2) we do not need to model interactions between very distant pairs of pixels since their dependence is negligible, and 3) we would not be able to use the model on images of different size. Conv: The most popular way to handle big images is to define potentials on small subsets of variables (e.g., neighborhoods of size 5x5 pixels) and to replicate these potentials across space while 2 The need to model the means was clearly recognized in [21] but they used conjunctive latent features that simultaneously represented a contribution to the “precision matrix” in a specific direction and the mean along that same direction. 3 The success of PoT-like models in Bayesian denoising is not surprising since the noisy image effectively replaces the reconstruction term from the mean hidden units (see eq. 5), providing a set of noisy mean intensities that are cleaned up by the patterns of correlation enforced by the covariance latent variables. 4 sharing their parameters at each image location [23, 24, 6]. This yields a convolutional weightsharing scheme, also called homogeneous field in the statistics literature. This choice is justified by the stationarity of natural images. This weight-sharing scheme is extremely concise in terms of number of parameters, but also rather inefficient in terms of latent representation. First, if there are N filters at each location and these filters are stepped by one pixel then the internal representation is about N times overcomplete. The internal representation has not only high computational cost, but it is also highly redundant. Since the input is mostly smooth and the parameters are the same across space, the latent variables are strongly correlated as well. This inefficiency turns out to be particularly harmful for a model like PoT causing the learned filters to become “random” looking (see fig 3-iii). A simple intuition follows from the equivalence between PoT and square ICA [15]. If the filter matrix C of eq. 1 is square and invertible, we can marginalize out the latent variables and write: p(y) = i S(yi ), where yi = Ci T x and S is a Student’s t distribution. In other words, there is an underlying assumption that filter outputs are independent. However, if the filters of matrix C are shifted and overlapping versions of each other, this clearly cannot be true. Training PoT with the Conv weight-sharing scheme forces the model to find filters that make filter outputs as independent as possible, which explains the very high-frequency patterns that are usually discovered [6]. Local: The Global and Conv weight-sharing schemes are at the two extremes of a spectrum of possibilities. For instance, we can define potentials on a small subset of input variables but, unlike Conv, each potential can have its own set of parameters, as shown in fig. 2-B. This is called local, or inhomogeneous field. Compared to Conv the number of parameters increases only slightly but the number of latent variables required and their redundancy is greatly reduced. In fact, the model learns different receptive fields at different locations as a better strategy for representing the input, overall when the number of potentials is limited (see also fig. 2-F). TConv: Local would not allow the model to be trained and tested on images of different resolution, and it might seem wasteful not to exploit the translation invariant property of images. We therefore advocate the use of a weight-sharing scheme that we call tiled-convolutional (TConv) shown in fig. 2-C and E [18]. Each filter tiles the image without overlaps with copies of itself (i.e. the stride equals the filter diameter). This reduces spatial redundancy of latent variables and allows the input images to have arbitrary size. At the same time, different filters do overlap with each other in order to avoid tiling artifacts. Fig. 2-F shows filters that were (jointly) learned by a Restricted Boltzmann Machine (RBM) [29] with Gaussian input variables using the TConv weight-sharing scheme. 4 Experiments We train gated MRF’s with and without mean hidden units using different weight-sharing schemes. The training procedure is very similar in all cases. We perform approximate maximum likelihood by using Fast Persistence Contrastive Divergence (FPCD) [25] and we draw samples by using Hybrid Monte Carlo (HMC) [26]. Since all latent variables can be exactly marginalized out we can use HMC on the free energy (negative logarithm of the marginal distribution over the input pixels). For mPoT this is: F mPoT (x) = − log(p(x))+const. = k,i 1 1 γ log(1+ (Cik T xk )2 )+ xT x− 2 2 T log(1+exp(Wjk xk )) (6) k,j where the index k runs over spatial locations and xk is the k-th image patch. FPCD keeps samples, called negative particles, that it uses to represent the model distribution. These particles are all updated after each weight update. For each mini-batch of data-points a) we compute the derivative of the free energy w.r.t. the training samples, b) we update the negative particles by running HMC for one HMC step consisting of 20 leapfrog steps. We start at the previous set of negative particles and use as parameters the sum of the regular parameters and a small perturbation vector, c) we compute the derivative of the free energy at the negative particles, and d) we update the regular parameters by using the difference of gradients between step a) and c) while the perturbation vector is updated using the gradient from c) only. The perturbation is also strongly decayed to zero and is subject to a larger learning rate. The aim is to encourage the negative particles to explore the space more quickly by slightly and temporarily raising the energy at their current position. Note that the use of FPCD as opposed to other estimation methods (like Persistent Contrastive Divergence [27]) turns out to be crucial to achieve good mixing of the sampler even after training. We train on mini-batches of 32 samples using gray-scale images of approximate size 160x160 pixels randomly cropped from the Berkeley segmentation dataset [28]. We perform 160,000 weight updates decreasing the learning by a factor of 4 by the end of training. The initial learning rate is set to 0.1 for the covariance 5 Figure 3: 160x160 samples drawn by A) mPoT-TConv, B) mHPoT-TConv, C) mcRBM-TConv and D) PoTTConv. On the side also i) a subset of 8x8 “covariance” filters learned by mPoT-TConv (the plot below shows how the whole set of filters tile a small patch; each bar correspond to a Gabor fit of a filter and colors identify filters applied at the same 8x8 location, each group is shifted by 2 pixels down the diagonal and a high-resolution image is tiled by replicating this pattern every 8 pixels horizontally and vertically), ii) a subset of 8x8 “mean” filters learned by the same mPoT-TConv, iii) filters learned by PoT-Conv and iv) by PoT-TConv. filters (matrix C of eq. 1), 0.01 for the mean parameters (matrix W of eq. 4), and 0.001 for the other parameters (γ of eq. 1). During training we condition on the borders and initialize the negative particles at zero in order to avoid artifacts at the border of the image. We learn 8x8 filters and pre-multiply the covariance filters by a whitening transform retaining 99% of the variance; we also normalize the norm of the covariance filters to prevent some of them from decaying to zero during training4 . Whenever we use the TConv weight-sharing scheme the model learns covariance filters that mostly resemble localized and oriented Gabor functions (see fig. 3-i and iv), while the Conv weight-sharing scheme learns structured but poorly localized high-frequency patterns (see fig. 3-iii) [6]. The TConv models re-use the same 8x8 filters every 8 pixels and apply a diagonal offset of 2 pixels between neighboring filters with different weights in order to reduce tiling artifacts. There are 4 sets of filters, each with 64 filters for a total of 256 covariance filters (see bottom plot of fig. 3). Similarly, we have 4 sets of mean filters, each with 32 filters. These filters have usually non-zero mean and exhibit on-center off-surround and off-center on-surround patterns, see fig. 3-ii. In order to draw samples from the learned models, we run HMC for a long time (10,000 iterations, each composed of 20 leap-frog steps). Some samples of size 160x160 pixels are reported in fig. 3 A)D). Without modelling the mean intensity, samples lack structure and do not seem much different from those that would be generated by a simple Gaussian model merely fitting the second order statistics (see fig. 3 in [1] and also fig. 2 in [7]). By contrast, structure, sharp boundaries and some simple texture emerge only from models that have mean latent variables, namely mcRBM, mPoT and mHPoT which differs from mPoT by having a second layer pooling matrix on the squared covariance filter outputs [11]. A more quantitative comparison is reported in table 1. We first compute marginal statistics of filter responses using the generated images, natural images from the test set, and random images. The statistics are the normalized histogram of individual filter responses to 24 Gabor filters (8 orientations and 3 scales). We then calculate the KL divergence between the histograms on random images and generated images and the KL divergence between the histograms on natural images and generated images. The table also reports the average difference of energies between random images and natural images. All results demonstrate that models that account for mean intensity generate images 4 The code used in the experiments can be found at the first author’s web-page. 6 MODEL F (R) − F (T ) (104 ) KL(R G) KL(T G) KL(R G) − KL(T PoT - Conv 2.9 0.3 0.6 PoT - TConv 2.8 0.4 1.0 -0.6 mPoT - TConv 5.2 1.0 0.2 0.8 mHPoT - TConv 4.9 1.7 0.8 0.9 mcRBM - TConv 3.5 1.5 1.0 G) -0.3 0.5 Table 1: Comparing MRF’s by measuring: difference of energy (negative log ratio of probabilities) between random images (R) and test natural images (T), the KL divergence between statistics of random images (R) and generated images (G), KL divergence between statistics of test natural images (T) and generated images (G), and difference of these two KL divergences. Statistics are computed using 24 Gabor filters. that are closer to natural images than to random images, whereas models that do not account for the mean (like the widely used PoT-Conv) produce samples that are actually closer to random images. 4.1 Discriminative Experiments on Weight-Sharing Schemes In future work, we intend to use the features discovered by the generative model for recognition. To understand how the different weight sharing schemes affect recognition performance we have done preliminary tests using the discriminative performance of a simpler model on simpler data. We consider one of the simplest and most versatile models, namely the RBM [29]. Since we also aim to test the Global weight-sharing scheme we are constrained to using fairly low resolution datasets such as the MNIST dataset of handwritten digits [30] and the CIFAR 10 dataset of generic object categories [22]. The MNIST dataset has soft binary images of size 28x28 pixels, while the CIFAR 10 dataset has color images of size 32x32 pixels. CIFAR 10 has 10 classes, 5000 training samples per class and 1000 test samples per class. MNIST also has 10 classes with, on average, 6000 training samples per class and 1000 test samples per class. The energy function of the RBM trained on the CIFAR 10 dataset, modelling input pixels with 3 (R,G,B) Gaussian variables [31], is exactly the one shown in eq. 4; while the RBM trained on MNIST uses logistic units for the pixels and the energy function is again the same as before but without any quadratic term. All models are trained in an unsupervised way to approximately maximize the likelihood in the training set using Contrastive Divergence [32]. They are then used to represent each input image with a feature vector (mean of the posterior over the latent variables) which is fed to a multinomial logistic classifier for discrimination. Models are compared in terms of: 1) recognition accuracy, 2) convergence time and 3) dimensionality of the representation. In general, assuming filters much smaller than the input image and assuming equal number of latent variables, Conv, TConv and Local models process each sample faster than Global by a factor approximately equal to the ratio between the area of the image and the area of the filters, which can be very large in practice. In the first set of experiments reported on the left of fig. 4 we study the internal representation in terms of discrimination and dimensionality using the MNIST dataset. For each choice of dimensionality all models are trained using the same number of operations. This is set to the amount necessary to complete one epoch over the training set using the Global model. This experiment shows that: 1) Local outperforms all other weight-sharing schemes for a wide range of dimensionalities, 2) TConv does not perform as well as Local probably because the translation invariant assumption is clearly violated for these relatively small, centered, images, 3) Conv performs well only when the internal representation is very high dimensional (10 times overcomplete) otherwise it severely underfits, 4) Global performs well when the representation is compact but its performance degrades rapidly as this increases because it needs more than the allotted training time. The right hand side of fig. 4 shows how the recognition performance evolves as we increase the number of operations (or training time) using models that produce a twice overcomplete internal representation. With only very few filters Conv still underfits and it does not improve its performance by training for longer, but Global does improve and eventually it reaches the performance of Local. If we look at the crossing of the error rate at 2% we can see that Local is about 4 times faster than Global. To summarize, Local provides more compact representations than Conv, is much faster than Global while achieving 7 6 2.4 error rate % 5 error rate % 2.6 Global Local TConv Conv 4 3 2 1 0 2.2 Global Local 2 Conv 1.8 1000 2000 3000 4000 5000 dimensionality 6000 7000 1.6 0 8000 2 4 6 8 # flops (relative to # flops per epoch of Global model) 10 Figure 4: Experiments on MNIST using RBM’s with different weight-sharing schemes. Left: Error rate as a function of the dimensionality of the latent representation. Right: Error rate as a function of the number of operations (normalized to those needed to perform one epoch in the Global model); all models have a twice overcomplete latent representation. similar performance in discrimination. Also, Local can easily scale to larger images while Global cannot. Similar experiments are performed using the CIFAR 10 dataset [22] of natural images. Using the same protocol introduced in earlier work by Krizhevsky [22], the RBM’s are trained in an unsupervised way on a subset of the 80 million tiny images dataset [33] and then “fine-tuned” on the CIFAR 10 dataset by supervised back-propagation of the error through the linear classifier and feature extractor. All models produce an approximately 10,000 dimensional internal representation to make a fair comparison. Models using local filters learn 16x16 filters that are stepped every pixel. Again, we do not experiment with the TConv weight-sharing scheme because the image is not large enough to allow enough replicas. Similarly to fig. 3-iii the Conv weight-sharing scheme was very difficult to train and did not produce Gabor-like features. Indeed, careful injection of sparsity and long training time seem necessary [31] for these RBM’s. By contrast, both Local and Global produce Gabor-like filters similar to those shown in fig. 2 F). The model trained with Conv weight-sharing scheme yields an accuracy equal to 56.6%, while Local and Global yield much better performance, 63.6% and 64.8% [22], respectively. Although Local and Global have similar performance, training with the Local weight-sharing scheme took under an hour while using the Global weight-sharing scheme required more than a day. 5 Conclusions and Future Work This work is motivated by the poor generative quality of currently popular MRF models of natural images. These models generate images that are actually more similar to white noise than to natural images. Our contribution is to recognize that current models can benefit from 1) the addition of a simple model of the mean intensities and from 2) the use of a less constrained weight-sharing scheme. By augmenting these models with an extra set of latent variables that model mean intensity we can generate samples that look much more realistic: they are characterized by smooth regions, sharp boundaries and some simple high frequency texture. We validate our approach by comparing the statistics of filter outputs on natural images and generated images. In the future, we plan to integrate these MRF’s into deeper hierarchical models and to use their internal representation to perform object recognition in high-resolution images. The hope is to further improve generation by capturing longer range dependencies and to exploit this to better cope with missing values and ambiguous sensory inputs. References [1] E.P. Simoncelli. Statistical modeling of photographic images. Handbook of Image and Video Processing, pages 431–441, 2005. 8 [2] A. Hyvarinen, J. Karhunen, and E. Oja. Independent Component Analysis. John Wiley & Sons, 2001. [3] G.E. Hinton and R. R Salakhutdinov. Reducing the dimensionality of data with neural networks. Science, 313(5786):504–507, 2006. [4] M. Ranzato and G.E. Hinton. Modeling pixel means and covariances using factorized third-order boltzmann machines. In CVPR, 2010. [5] M.J. Wainwright and E.P. Simoncelli. Scale mixtures of gaussians and the statistics of natural images. In NIPS, 2000. [6] S. Roth and M.J. Black. Fields of experts: A framework for learning image priors. In CVPR, 2005. [7] U. Schmidt, Q. Gao, and S. Roth. A generative perspective on mrfs in low-level vision. In CVPR, 2010. [8] S. Geman and D. Geman. Stochastic relaxation, gibbs distributions, and the bayesian restoration of images. PAMI, 6:721–741, 1984. [9] M. Welling, G.E. Hinton, and S. Osindero. Learning sparse topographic representations with products of student-t distributions. In NIPS, 2003. [10] S.C. Zhu and D. Mumford. Prior learning and gibbs reaction diffusion. PAMI, pages 1236–1250, 1997. [11] S. Osindero, M. Welling, and G. E. Hinton. Topographic product models applied to natural scene statistics. Neural Comp., 18:344–381, 2006. [12] S. Osindero and G. E. Hinton. Modeling image patches with a directed hierarchy of markov random fields. In NIPS, 2008. [13] Y. Karklin and M.S. Lewicki. Emergence of complex cell properties by learning to generalize in natural scenes. Nature, 457:83–86, 2009. [14] B. A. Olshausen and D. J. Field. Sparse coding with an overcomplete basis set: a strategy employed by v1? Vision Research, 37:3311–3325, 1997. [15] Y. W. Teh, M. Welling, S. Osindero, and G. E. Hinton. Energy-based models for sparse overcomplete representations. JMLR, 4:1235–1260, 2003. [16] Y. Weiss and W.T. Freeman. What makes a good model of natural images? In CVPR, 2007. [17] S. Roth and M. J. Black. Fields of experts. Int. Journal of Computer Vision, 82:205–229, 2009. [18] K. Gregor and Y. LeCun. Emergence of complex-like cells in a temporal product network with local receptive fields. arXiv:1006.0448, 2010. [19] C. Tang and C. Eliasmith. Deep networks for robust visual recognition. In ICML, 2010. [20] M. Ranzato, A. Krizhevsky, and G.E. Hinton. Factored 3-way restricted boltzmann machines for modeling natural images. In AISTATS, 2010. [21] N. Heess, C.K.I. Williams, and G.E. Hinton. Learning generative texture models with extended fields-ofexperts. In BMCV, 2009. [22] A. Krizhevsky. Learning multiple layers of features from tiny images, 2009. MSc Thesis, Dept. of Comp. Science, Univ. of Toronto. [23] A. Waibel, T. Hanazawa, G. Hinton, K. Shikano, and K. Lang. Phoneme recognition using time-delay neural networks. IEEE Acoustics Speech and Signal Proc., 37:328–339, 1989. [24] Y. LeCun, L. Bottou, Y. Bengio, and P. Haffner. Gradient-based learning applied to document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998. [25] T. Tieleman and G.E. Hinton. Using fast weights to improve persistent contrastive divergence. In ICML, 2009. [26] R.M. Neal. Bayesian learning for neural networks. Springer-Verlag, 1996. [27] T. Tieleman. Training restricted boltzmann machines using approximations to the likelihood gradient. In ICML, 2008. [28] http://www.cs.berkeley.edu/projects/vision/grouping/segbench/. [29] M. Welling, M. Rosen-Zvi, and G.E. Hinton. Exponential family harmoniums with an application to information retrieval. In NIPS, 2005. [30] http://yann.lecun.com/exdb/mnist/. [31] H. Lee, R. Grosse, R. Ranganath, and A. Y. Ng. Convolutional deep belief networks for scalable unsupervised learning of hierarchical representations. In Proc. ICML, 2009. [32] G.E. Hinton. Training products of experts by minimizing contrastive divergence. Neural Computation, 14:1771–1800, 2002. [33] A. Torralba, R. Fergus, and W.T. Freeman. 80 million tiny images: a large dataset for non-parametric object and scene recognition. PAMI, 30:1958–1970, 2008. 9

4 0.11996444 206 nips-2010-Phone Recognition with the Mean-Covariance Restricted Boltzmann Machine

Author: George Dahl, Marc'aurelio Ranzato, Abdel-rahman Mohamed, Geoffrey E. Hinton

Abstract: Straightforward application of Deep Belief Nets (DBNs) to acoustic modeling produces a rich distributed representation of speech data that is useful for recognition and yields impressive results on the speaker-independent TIMIT phone recognition task. However, the first-layer Gaussian-Bernoulli Restricted Boltzmann Machine (GRBM) has an important limitation, shared with mixtures of diagonalcovariance Gaussians: GRBMs treat different components of the acoustic input vector as conditionally independent given the hidden state. The mean-covariance restricted Boltzmann machine (mcRBM), first introduced for modeling natural images, is a much more representationally efficient and powerful way of modeling the covariance structure of speech data. Every configuration of the precision units of the mcRBM specifies a different precision matrix for the conditional distribution over the acoustic space. In this work, we use the mcRBM to learn features of speech data that serve as input into a standard DBN. The mcRBM features combined with DBNs allow us to achieve a phone error rate of 20.5%, which is superior to all published results on speaker-independent TIMIT to date. 1

5 0.1167245 270 nips-2010-Tight Sample Complexity of Large-Margin Learning

Author: Sivan Sabato, Nathan Srebro, Naftali Tishby

Abstract: We obtain a tight distribution-specific characterization of the sample complexity of large-margin classification with L2 regularization: We introduce the γ-adapted-dimension, which is a simple function of the spectrum of a distribution’s covariance matrix, and show distribution-specific upper and lower bounds on the sample complexity, both governed by the γ-adapted-dimension of the source distribution. We conclude that this new quantity tightly characterizes the true sample complexity of large-margin classification. The bounds hold for a rich family of sub-Gaussian distributions. 1

6 0.11645656 156 nips-2010-Learning to combine foveal glimpses with a third-order Boltzmann machine

7 0.10583823 224 nips-2010-Regularized estimation of image statistics by Score Matching

8 0.1016603 101 nips-2010-Gaussian sampling by local perturbations

9 0.10057629 272 nips-2010-Towards Holistic Scene Understanding: Feedback Enabled Cascaded Classification Models

10 0.09973485 70 nips-2010-Efficient Optimization for Discriminative Latent Class Models

11 0.097843915 235 nips-2010-Self-Paced Learning for Latent Variable Models

12 0.094151966 143 nips-2010-Learning Convolutional Feature Hierarchies for Visual Recognition

13 0.090202421 133 nips-2010-Kernel Descriptors for Visual Recognition

14 0.087395489 290 nips-2010-t-logistic regression

15 0.085986905 94 nips-2010-Feature Set Embedding for Incomplete Data

16 0.083467394 86 nips-2010-Exploiting weakly-labeled Web images to improve object classification: a domain adaptation approach

17 0.082812659 89 nips-2010-Factorized Latent Spaces with Structured Sparsity

18 0.082479075 59 nips-2010-Deep Coding Network

19 0.082042456 153 nips-2010-Learning invariant features using the Transformed Indian Buffet Process

20 0.078420728 271 nips-2010-Tiled convolutional neural networks


similar papers computed by lsi model

lsi for this paper:

topicId topicWeight

[(0, 0.235), (1, 0.093), (2, -0.078), (3, -0.123), (4, 0.043), (5, 0.006), (6, 0.023), (7, 0.052), (8, -0.091), (9, -0.004), (10, -0.032), (11, -0.032), (12, 0.124), (13, -0.131), (14, -0.101), (15, -0.041), (16, -0.01), (17, -0.021), (18, -0.023), (19, -0.136), (20, -0.006), (21, 0.088), (22, -0.004), (23, -0.021), (24, 0.0), (25, 0.156), (26, -0.025), (27, 0.049), (28, 0.109), (29, 0.002), (30, 0.011), (31, -0.084), (32, 0.102), (33, 0.002), (34, 0.068), (35, -0.032), (36, -0.028), (37, -0.01), (38, -0.018), (39, 0.009), (40, 0.068), (41, -0.019), (42, -0.016), (43, 0.084), (44, -0.009), (45, 0.075), (46, -0.051), (47, -0.007), (48, -0.027), (49, 0.017)]

similar papers list:

simIndex simValue paperId paperTitle

same-paper 1 0.91136748 99 nips-2010-Gated Softmax Classification

Author: Roland Memisevic, Christopher Zach, Marc Pollefeys, Geoffrey E. Hinton

Abstract: We describe a ”log-bilinear” model that computes class probabilities by combining an input vector multiplicatively with a vector of binary latent variables. Even though the latent variables can take on exponentially many possible combinations of values, we can efficiently compute the exact probability of each class by marginalizing over the latent variables. This makes it possible to get the exact gradient of the log likelihood. The bilinear score-functions are defined using a three-dimensional weight tensor, and we show that factorizing this tensor allows the model to encode invariances inherent in a task by learning a dictionary of invariant basis functions. Experiments on a set of benchmark problems show that this fully probabilistic model can achieve classification performance that is competitive with (kernel) SVMs, backpropagation, and deep belief nets. 1

2 0.80003649 271 nips-2010-Tiled convolutional neural networks

Author: Jiquan Ngiam, Zhenghao Chen, Daniel Chia, Pang W. Koh, Quoc V. Le, Andrew Y. Ng

Abstract: Convolutional neural networks (CNNs) have been successfully applied to many tasks such as digit and object recognition. Using convolutional (tied) weights significantly reduces the number of parameters that have to be learned, and also allows translational invariance to be hard-coded into the architecture. In this paper, we consider the problem of learning invariances, rather than relying on hardcoding. We propose tiled convolution neural networks (Tiled CNNs), which use a regular “tiled” pattern of tied weights that does not require that adjacent hidden units share identical weights, but instead requires only that hidden units k steps away from each other to have tied weights. By pooling over neighboring units, this architecture is able to learn complex invariances (such as scale and rotational invariance) beyond translational invariance. Further, it also enjoys much of CNNs’ advantage of having a relatively small number of learned parameters (such as ease of learning and greater scalability). We provide an efficient learning algorithm for Tiled CNNs based on Topographic ICA, and show that learning complex invariant features allows us to achieve highly competitive results for both the NORB and CIFAR-10 datasets. 1

3 0.78566414 140 nips-2010-Layer-wise analysis of deep networks with Gaussian kernels

Author: Grégoire Montavon, Klaus-Robert Müller, Mikio L. Braun

Abstract: Deep networks can potentially express a learning problem more efficiently than local learning machines. While deep networks outperform local learning machines on some problems, it is still unclear how their nice representation emerges from their complex structure. We present an analysis based on Gaussian kernels that measures how the representation of the learning problem evolves layer after layer as the deep network builds higher-level abstract representations of the input. We use this analysis to show empirically that deep networks build progressively better representations of the learning problem and that the best representations are obtained when the deep network discriminates only in the last layers. 1

4 0.75908232 206 nips-2010-Phone Recognition with the Mean-Covariance Restricted Boltzmann Machine

Author: George Dahl, Marc'aurelio Ranzato, Abdel-rahman Mohamed, Geoffrey E. Hinton

Abstract: Straightforward application of Deep Belief Nets (DBNs) to acoustic modeling produces a rich distributed representation of speech data that is useful for recognition and yields impressive results on the speaker-independent TIMIT phone recognition task. However, the first-layer Gaussian-Bernoulli Restricted Boltzmann Machine (GRBM) has an important limitation, shared with mixtures of diagonalcovariance Gaussians: GRBMs treat different components of the acoustic input vector as conditionally independent given the hidden state. The mean-covariance restricted Boltzmann machine (mcRBM), first introduced for modeling natural images, is a much more representationally efficient and powerful way of modeling the covariance structure of speech data. Every configuration of the precision units of the mcRBM specifies a different precision matrix for the conditional distribution over the acoustic space. In this work, we use the mcRBM to learn features of speech data that serve as input into a standard DBN. The mcRBM features combined with DBNs allow us to achieve a phone error rate of 20.5%, which is superior to all published results on speaker-independent TIMIT to date. 1

5 0.75139332 156 nips-2010-Learning to combine foveal glimpses with a third-order Boltzmann machine

Author: Hugo Larochelle, Geoffrey E. Hinton

Abstract: We describe a model based on a Boltzmann machine with third-order connections that can learn how to accumulate information about a shape over several fixations. The model uses a retina that only has enough high resolution pixels to cover a small area of the image, so it must decide on a sequence of fixations and it must combine the “glimpse” at each fixation with the location of the fixation before integrating the information with information from other glimpses of the same object. We evaluate this model on a synthetic dataset and two image classification datasets, showing that it can perform at least as well as a model trained on whole images. 1

6 0.74127102 103 nips-2010-Generating more realistic images using gated MRF's

7 0.68556511 111 nips-2010-Hallucinations in Charles Bonnet Syndrome Induced by Homeostasis: a Deep Boltzmann Machine Model

8 0.66799861 224 nips-2010-Regularized estimation of image statistics by Score Matching

9 0.59745514 213 nips-2010-Predictive Subspace Learning for Multi-view Data: a Large Margin Approach

10 0.5904671 143 nips-2010-Learning Convolutional Feature Hierarchies for Visual Recognition

11 0.58446246 235 nips-2010-Self-Paced Learning for Latent Variable Models

12 0.57121271 101 nips-2010-Gaussian sampling by local perturbations

13 0.54648811 188 nips-2010-On Herding and the Perceptron Cycling Theorem

14 0.53783953 209 nips-2010-Pose-Sensitive Embedding by Nonlinear NCA Regression

15 0.53323883 207 nips-2010-Phoneme Recognition with Large Hierarchical Reservoirs

16 0.5258798 31 nips-2010-An analysis on negative curvature induced by singularity in multi-layer neural-network learning

17 0.51639348 266 nips-2010-The Maximal Causes of Natural Scenes are Edge Filters

18 0.4863449 82 nips-2010-Evaluation of Rarity of Fingerprints in Forensics

19 0.48088703 86 nips-2010-Exploiting weakly-labeled Web images to improve object classification: a domain adaptation approach

20 0.47256219 89 nips-2010-Factorized Latent Spaces with Structured Sparsity


similar papers computed by lda model

lda for this paper:

topicId topicWeight

[(13, 0.052), (17, 0.028), (27, 0.059), (30, 0.049), (35, 0.028), (45, 0.21), (50, 0.066), (52, 0.054), (60, 0.026), (70, 0.262), (77, 0.046), (78, 0.019), (90, 0.05)]

similar papers list:

simIndex simValue paperId paperTitle

1 0.85426426 24 nips-2010-Active Learning Applied to Patient-Adaptive Heartbeat Classification

Author: Jenna Wiens, John V. Guttag

Abstract: While clinicians can accurately identify different types of heartbeats in electrocardiograms (ECGs) from different patients, researchers have had limited success in applying supervised machine learning to the same task. The problem is made challenging by the variety of tasks, inter- and intra-patient differences, an often severe class imbalance, and the high cost of getting cardiologists to label data for individual patients. We address these difficulties using active learning to perform patient-adaptive and task-adaptive heartbeat classification. When tested on a benchmark database of cardiologist annotated ECG recordings, our method had considerably better performance than other recently proposed methods on the two primary classification tasks recommended by the Association for the Advancement of Medical Instrumentation. Additionally, our method required over 90% less patient-specific training data than the methods to which we compared it. 1

same-paper 2 0.78166705 99 nips-2010-Gated Softmax Classification

Author: Roland Memisevic, Christopher Zach, Marc Pollefeys, Geoffrey E. Hinton

Abstract: We describe a ”log-bilinear” model that computes class probabilities by combining an input vector multiplicatively with a vector of binary latent variables. Even though the latent variables can take on exponentially many possible combinations of values, we can efficiently compute the exact probability of each class by marginalizing over the latent variables. This makes it possible to get the exact gradient of the log likelihood. The bilinear score-functions are defined using a three-dimensional weight tensor, and we show that factorizing this tensor allows the model to encode invariances inherent in a task by learning a dictionary of invariant basis functions. Experiments on a set of benchmark problems show that this fully probabilistic model can achieve classification performance that is competitive with (kernel) SVMs, backpropagation, and deep belief nets. 1

3 0.68714797 238 nips-2010-Short-term memory in neuronal networks through dynamical compressed sensing

Author: Surya Ganguli, Haim Sompolinsky

Abstract: Recent proposals suggest that large, generic neuronal networks could store memory traces of past input sequences in their instantaneous state. Such a proposal raises important theoretical questions about the duration of these memory traces and their dependence on network size, connectivity and signal statistics. Prior work, in the case of gaussian input sequences and linear neuronal networks, shows that the duration of memory traces in a network cannot exceed the number of neurons (in units of the neuronal time constant), and that no network can out-perform an equivalent feedforward network. However a more ethologically relevant scenario is that of sparse input sequences. In this scenario, we show how linear neural networks can essentially perform compressed sensing (CS) of past inputs, thereby attaining a memory capacity that exceeds the number of neurons. This enhanced capacity is achieved by a class of “orthogonal” recurrent networks and not by feedforward networks or generic recurrent networks. We exploit techniques from the statistical physics of disordered systems to analytically compute the decay of memory traces in such networks as a function of network size, signal sparsity and integration time. Alternately, viewed purely from the perspective of CS, this work introduces a new ensemble of measurement matrices derived from dynamical systems, and provides a theoretical analysis of their asymptotic performance. 1

4 0.68401718 117 nips-2010-Identifying graph-structured activation patterns in networks

Author: James Sharpnack, Aarti Singh

Abstract: We consider the problem of identifying an activation pattern in a complex, largescale network that is embedded in very noisy measurements. This problem is relevant to several applications, such as identifying traces of a biochemical spread by a sensor network, expression levels of genes, and anomalous activity or congestion in the Internet. Extracting such patterns is a challenging task specially if the network is large (pattern is very high-dimensional) and the noise is so excessive that it masks the activity at any single node. However, typically there are statistical dependencies in the network activation process that can be leveraged to fuse the measurements of multiple nodes and enable reliable extraction of highdimensional noisy patterns. In this paper, we analyze an estimator based on the graph Laplacian eigenbasis, and establish the limits of mean square error recovery of noisy patterns arising from a probabilistic (Gaussian or Ising) model based on an arbitrary graph structure. We consider both deterministic and probabilistic network evolution models, and our results indicate that by leveraging the network interaction structure, it is possible to consistently recover high-dimensional patterns even when the noise variance increases with network size. 1

5 0.68316287 92 nips-2010-Fast global convergence rates of gradient methods for high-dimensional statistical recovery

Author: Alekh Agarwal, Sahand Negahban, Martin J. Wainwright

Abstract: Many statistical M -estimators are based on convex optimization problems formed by the weighted sum of a loss function with a norm-based regularizer. We analyze the convergence rates of first-order gradient methods for solving such problems within a high-dimensional framework that allows the data dimension d to grow with (and possibly exceed) the sample size n. This high-dimensional structure precludes the usual global assumptions— namely, strong convexity and smoothness conditions—that underlie classical optimization analysis. We define appropriately restricted versions of these conditions, and show that they are satisfied with high probability for various statistical models. Under these conditions, our theory guarantees that Nesterov’s first-order method [12] has a globally geometric rate of convergence up to the statistical precision of the model, meaning the typical Euclidean distance between the true unknown parameter θ∗ and the optimal solution θ. This globally linear rate is substantially faster than previous analyses of global convergence for specific methods that yielded only sublinear rates. Our analysis applies to a wide range of M -estimators and statistical models, including sparse linear regression using Lasso ( 1 regularized regression), group Lasso, block sparsity, and low-rank matrix recovery using nuclear norm regularization. Overall, this result reveals an interesting connection between statistical precision and computational efficiency in high-dimensional estimation. 1

6 0.68311906 7 nips-2010-A Family of Penalty Functions for Structured Sparsity

7 0.6829372 109 nips-2010-Group Sparse Coding with a Laplacian Scale Mixture Prior

8 0.68253374 51 nips-2010-Construction of Dependent Dirichlet Processes based on Poisson Processes

9 0.67997789 265 nips-2010-The LASSO risk: asymptotic results and real world examples

10 0.67967457 148 nips-2010-Learning Networks of Stochastic Differential Equations

11 0.67912048 63 nips-2010-Distributed Dual Averaging In Networks

12 0.67845386 158 nips-2010-Learning via Gaussian Herding

13 0.67788368 87 nips-2010-Extended Bayesian Information Criteria for Gaussian Graphical Models

14 0.67704982 282 nips-2010-Variable margin losses for classifier design

15 0.6769135 49 nips-2010-Computing Marginal Distributions over Continuous Markov Networks for Statistical Relational Learning

16 0.67669654 116 nips-2010-Identifying Patients at Risk of Major Adverse Cardiovascular Events Using Symbolic Mismatch

17 0.67661709 12 nips-2010-A Primal-Dual Algorithm for Group Sparse Regularization with Overlapping Groups

18 0.67593861 70 nips-2010-Efficient Optimization for Discriminative Latent Class Models

19 0.67579937 186 nips-2010-Object Bank: A High-Level Image Representation for Scene Classification & Semantic Feature Sparsification

20 0.67553008 5 nips-2010-A Dirty Model for Multi-task Learning