Agglomerative Bregman Clustering

Total Page:16

File Type:pdf, Size:1020Kb

Agglomerative Bregman Clustering Agglomerative Bregman Clustering Matus Telgarsky [email protected] Sanjoy Dasgupta [email protected] Department of Computer Science and Engineering, UCSD, 9500 Gilman Drive, La Jolla, CA 92093-0404 Abstract 1.1. Bregman clustering This manuscript develops the theory of ag- There is already a rich theory of clustering with Breg- glomerative clustering with Bregman diver- man divergences, and in particular the relationship gences. Geometric smoothing techniques are of these divergences with exponential family distribu- developed to deal with degenerate clusters. tions (Banerjee et al., 2005). The standard develop- To allow for cluster models based on expo- ment has two shortcomings, the first of which is am- nential families with overcomplete represen- plified in the agglomerative setting. tations, Bregman divergences are developed for nondifferentiable convex functions. Degenerate divergences. Many divergences lead to merge costs which are undefined on certain inputs. This scenario is exacerbated with small clusters; 1. Introduction for instance, with Gaussian clusters, the corre- m sponding divergence rule is the KL divergence, Starting with points fxigi=1 and a pairwise merge cost ∆(·; ·), classical agglomerative clustering produces a which demands full rank cluster covariances. This single hierarchical tree as follows (Duda et al., 2001). is impossible with ≤ d points, but the agglomer- ative procedure above starts with singletons. 1. Start with m clusters: Ci := fxig for each i. Minimal representations. The standard theory of 2. While at least two clusters remain: exponential families and its connections to Breg- man divergences depend on minimal representa- (a) Choose fCi;Cjg with minimal ∆(Ci;Cj). tions: there is just one way to write down any (b) Remove fCi;Cjg, add in Ci [ Cj. particular distribution. On the other hand, the natural encoding for many problems | e.g., Ising In order to build a hierarchy with low k-means cost, models, and many other examples listed in the one can use the merge cost due to Ward(1963), textbook of Wainwright & Jordan(2008, Section 4) | is overcomplete, necessitating potentially te- jCijjCjj 2 dious conversions to invoke the theory. ∆w(Ci;Cj) := kτ(Ci) − τ(Cj)k2; jCij + jCjj where τ(C) denotes the mean of cluster C. 1.2. Contribution The k-means cost, and thus the Ward merge rule, in- The approach of this manuscript is to carefully build a herently prefer spherical clusters of common radius. theory of Bregman divergences constructed from con- To accommodate other cluster shapes and input do- vex, yet nondifferentiable functions. Section2 will mains, the squared Euclidean norm may be replaced present the basic definition, and verify this generaliza- with a relaxation sharing many of the same properties, tion satisfies the usual Bregman divergence properties. a Bregman divergence. Section3 will revisit the standard Bregman hard clus- This manuscript develops the theory of agglomerative tering model (Banerjee et al., 2005), and show how it clustering with Bregman divergences. naturally leads to a merge cost ∆. Section4 then con- structs exponential families, demonstrating that non- Appearing in Proceedings of the 29 th International Confer- differentiable Bregman divergences, while permitting ence on Machine Learning, Edinburgh, Scotland, UK, 2012. representations which are not minimal, still satisfy Copyright 2012 by the author(s)/owner(s). all the usual properties. To overcome the aforemen- Agglomerative Bregman Clustering tioned small-sample cases where divergences may not f(x; r): x 2 Rn; r ≥ f(x)g ⊆ Rn × R¯. A function is be well-defined, Section5 presents smoothing proce- convex when its epigraph is convex, and closed when dures which immediately follow from the preceding its epigraph is closed. The domain dom(f) of a func- technical development. tion f : Rn ! R¯ is the subset of inputs not mapping to +1: dom(f) = fx 2 n : f(x) < 1g. A function To close, Section6 presents the final algorithm, and R is proper if dom(f) is nonempty, and f never takes Section7 provides experimental validation both by on the value −∞. The Bregman divergences in this measuring cluster fit, and the suitability of cluster fea- manuscript will be generated from closed proper con- tures in supervised learning tasks. vex functions. The various appendices contain all proofs, as well as The conjugate of a function f is the function f ∗(φ) := some additional technical material and examples. supx hφ, xi − f(x); when f is closed proper convex, so is f ∗, and moreover f ∗∗ = f. A subgradient g to 1.3. Related work a function f at y 2 dom(f) provides an affine lower A number of works present agglomerative schemes bound: for any x 2 Rn, f(x) ≥ f(y) + hg; x − yi. for clustering with exponential families, from the per- The set of all subgradients at a point y is denoted spective of KL divergences between distributions, or by @f(y) (which is easily empty). The directional the analogous goal of maximizing model likelihood, derivative f 0(y; d) of a function f at y in direction d is or lastly in connection to the information bottleneck limt#0(f(y + td) − f(y))=t. method (Iwayama & Tokunaga, 1995; Fraley, 1998; n The affine hull of a set S ⊆ R is the smallest affine set Heller & Ghahramani, 2005; Garcia et al., 2010; Blun- containing it. If S is translated and rotated so that its dell et al., 2010; Slonim & Tishby, 1999). Further- d n d affine hull is some R ⊆ R , then its interior within R more, Merugu(2006) studied the same algorithm as n is its relative interior within R . Said another way, the the present work, phrased in terms of Bregman diver- relative interior ri(S) is the interior of S with respect gences. These preceding methods either do not explic- n to the R topology relativized to the affine hull of S. itly mention divergence degeneracies, or circumvent Although functions in this manuscript will generally them with Bayesian techniques, a connection discussed be closed, their domains are often (relatively) open. in Section5. Convex functions will be defined over Rn, but it will Bregman divergences for nondifferentiable functions be useful to treat data as lying in an abstract space X , have been studied in a number of places. Remark 2.4 n and a statistic map τ : X! R will embed examples shows the relationship between the presented version, in the desired Euclidean space. This map, which will and one due to Gordon(1999). Furthermore, Kiwiel also be overloaded to handle finite subsets of X , will (1995) presents divergences almost identical to those eventually incorporate the smoothing procedure. here, but the manuscripts and focuses differ thereafter. The cluster cost will be denoted by φ, or φf,τ to make The development here of exponential families and re- the underlying convex function and statistic map clear; lated Bregman properties generalizes results found in similarly, the merge cost is denoted by ∆ and ∆f,τ . a variety of sources (Brown, 1986; Azoury & War- muth, 2001; Banerjee et al., 2005; Wainwright & Jor- dan, 2008); further bibliographic remarks will appear 2. Bregman divergences throughout, and in AppendixG. Finally, parallel to n Given a convex function f : R ! R¯, the Bregman the completion of this manuscript, another group has divergence Bf (·; y) is the gap between f and its lin- developed exponential families under similarly relaxed earization at y. Typically, f is differentiable, and so conditions, but from the perspective of maximum en- Bf (x; y) = f(x) − f(y) − hrf(y); x − yi. tropy and convex duality (Csisz´ar& Mat´uˇs, 2012). Definition 2.1. Given a convex function f : Rn ! R¯, the corresponding Bregman divergence between x; y 2 1.4. Notation dom(f) is The following concepts from convex analysis are used 0 throughout the text; the interested reader is directed Bf (x; y) := f(x) − f(y) + f (y; y − x): ♦ to the seminal text of Rockafellar(1970). A set is convex when the line segment between any two of its Unlike gradients, directional derivatives are well- elements is again within the set. The epigraph of a defined whenever a convex function is finite, although function f : Rn ! R¯, where R¯ = R [ {±∞}, is they can be infinite on the relative boundary of dom(f) the set of points bounded below by f; i.e., the set (Rockafellar, 1970, Theorems 23.1, 23.3, 23.4). Agglomerative Bregman Clustering Remark 2.4. Given x 2 dom(f) and a dual element g 2 n, another nondifferentiable generalization of x x R 1 2 Bregman divergence, due to Gordon(1999), is ∗ Df (x; g) := f(x) + f (g) − hg; xi : y Bf (x1; y) Bf (x2; y) Now suppose there exists y 2 ri(dom(f)) with g 2 @f(y); the Fenchel-Young inequality (Rockafellar, 1970, Theorem 23.5) grants Df (x; g) = f(x) − f(y) − hg; x − yi. Thus, by Proposition 2.3, Figure 1. Bregman divergences with respect to a reference point y at which f is nondifferentiable. The thick (red Bf (x; y) := maxfDf (x; g): g 2 @f(y)g: ♦ or blue) dashed lines denote the divergence values them- selves; they travel down from f to the negated sublinear To sanity check Bf , AppendixA states and proves a function x 7! f(y) − f 0(y; y − x), here a pair of dotted number of key Bregman divergence properties, gener- rays. Noting Proposition 2.3 and fixing some xi, the sub- alized to the case of nondifferentiability. The following gradient at y farthest from xi is one of these dotted rays list summarizes these properties; in general, f is closed together with its dashed, gray extension. The gray ex- proper convex, y 2 ri(dom(f)), and x 2 dom(f).
Recommended publications
  • Learning to Approximate a Bregman Divergence
    Learning to Approximate a Bregman Divergence Ali Siahkamari1 Xide Xia2 Venkatesh Saligrama1 David Castañón1 Brian Kulis1,2 1 Department of Electrical and Computer Engineering 2 Department of Computer Science Boston University Boston, MA, 02215 {siaa, xidexia, srv, dac, bkulis}@bu.edu Abstract Bregman divergences generalize measures such as the squared Euclidean distance and the KL divergence, and arise throughout many areas of machine learning. In this paper, we focus on the problem of approximating an arbitrary Bregman divergence from supervision, and we provide a well-principled approach to ana- lyzing such approximations. We develop a formulation and algorithm for learning arbitrary Bregman divergences based on approximating their underlying convex generating function via a piecewise linear function. We provide theoretical ap- proximation bounds using our parameterization and show that the generalization −1=2 error Op(m ) for metric learning using our framework matches the known generalization error in the strictly less general Mahalanobis metric learning setting. We further demonstrate empirically that our method performs well in comparison to existing metric learning methods, particularly for clustering and ranking problems. 1 Introduction Bregman divergences arise frequently in machine learning. They play an important role in clus- tering [3] and optimization [7], and specific Bregman divergences such as the KL divergence and squared Euclidean distance are fundamental in many areas. Many learning problems require di- vergences other than Euclidean distances—for instance, when requiring a divergence between two distributions—and Bregman divergences are natural in such settings. The goal of this paper is to provide a well-principled framework for learning an arbitrary Bregman divergence from supervision.
    [Show full text]
  • Bregman Divergence Bounds and Universality Properties of the Logarithmic Loss Amichai Painsky, Member, IEEE, and Gregory W
    This article has been accepted for publication in a future issue of this journal, but has not been fully edited. Content may change prior to final publication. Citation information: DOI 10.1109/TIT.2019.2958705, IEEE Transactions on Information Theory 1 Bregman Divergence Bounds and Universality Properties of the Logarithmic Loss Amichai Painsky, Member, IEEE, and Gregory W. Wornell, Fellow, IEEE Abstract—A loss function measures the discrepancy between Moreover, designing a predictor with respect to one measure the true values and their estimated fits, for a given instance may result in poor performance when evaluated by another. of data. In classification problems, a loss function is said to For example, the minimizer of a 0-1 loss may result in be proper if a minimizer of the expected loss is the true underlying probability. We show that for binary classification, an unbounded loss, when measured with a Bernoulli log- the divergence associated with smooth, proper, and convex likelihood loss. In such cases, it would be desireable to design loss functions is upper bounded by the Kullback-Leibler (KL) a predictor according to a “universal” measure, i.e., one that divergence, to within a normalization constant. This implies is suitable for a variety of purposes, and provide performance that by minimizing the logarithmic loss associated with the KL guarantees for different uses. divergence, we minimize an upper bound to any choice of loss from this set. As such the logarithmic loss is universal in the In this paper, we show that for binary classification, the sense of providing performance guarantees with respect to a Bernoulli log-likelihood loss (log-loss) is such a universal broad class of accuracy measures.
    [Show full text]
  • Metrics Defined by Bregman Divergences †
    1 METRICS DEFINED BY BREGMAN DIVERGENCES y PENGWEN CHEN z AND YUNMEI CHEN, MURALI RAOx Abstract. Bregman divergences are generalizations of the well known Kullback Leibler diver- gence. They are based on convex functions and have recently received great attention. We present a class of \squared root metrics" based on Bregman divergences. They can be regarded as natural generalization of Euclidean distance. We provide necessary and sufficient conditions for a convex function so that the square root of its associated average Bregman divergence is a metric. Key words. Metrics, Bregman divergence, Convexity subject classifications. Analysis of noise-corrupted data, is difficult without interpreting the data to have been randomly drawn from some unknown distribution with unknown parameters. The most common assumption on noise is Gaussian distribution. However, it may be inappropriate if data is binary-valued or integer-valued or nonnegative. Gaussian is a member of the exponential family. Other members of this family for example the Poisson and the Bernoulli are better suited for integer and binary data. Exponential families and Bregman divergences ( Definition 1.1 ) have a very intimate relationship. There exists a unique Bregman divergence corresponding to every regular exponential family [13][3]. More precisely, the log-likelihood of an exponential family distribution can be represented by a sum of a Bregman divergence and a parameter unrelated term. Hence, Bregman divergence provides a likelihood distance for exponential family in some sense. This property has been used in generalizing principal component analysis to the Exponential family [7]. The Bregman divergence however is not a metric, because it is not symmetric, and does not satisfy the triangle inequality.
    [Show full text]
  • On a Generalization of the Jensen-Shannon Divergence and the Jensen-Shannon Centroid
    On a generalization of the Jensen-Shannon divergence and the JS-symmetrization of distances relying on abstract means∗ Frank Nielsen† Sony Computer Science Laboratories, Inc. Tokyo, Japan Abstract The Jensen-Shannon divergence is a renown bounded symmetrization of the unbounded Kullback-Leibler divergence which measures the total Kullback-Leibler divergence to the aver- age mixture distribution. However the Jensen-Shannon divergence between Gaussian distribu- tions is not available in closed-form. To bypass this problem, we present a generalization of the Jensen-Shannon (JS) divergence using abstract means which yields closed-form expressions when the mean is chosen according to the parametric family of distributions. More generally, we define the JS-symmetrizations of any distance using generalized statistical mixtures derived from abstract means. In particular, we first show that the geometric mean is well-suited for exponential families, and report two closed-form formula for (i) the geometric Jensen-Shannon divergence between probability densities of the same exponential family, and (ii) the geometric JS-symmetrization of the reverse Kullback-Leibler divergence. As a second illustrating example, we show that the harmonic mean is well-suited for the scale Cauchy distributions, and report a closed-form formula for the harmonic Jensen-Shannon divergence between scale Cauchy distribu- tions. We also define generalized Jensen-Shannon divergences between matrices (e.g., quantum Jensen-Shannon divergences) and consider clustering with respect to these novel Jensen-Shannon divergences. Keywords: Jensen-Shannon divergence, Jeffreys divergence, resistor average distance, Bhat- tacharyya distance, Chernoff information, f-divergence, Jensen divergence, Burbea-Rao divergence, arXiv:1904.04017v3 [cs.IT] 10 Dec 2020 Bregman divergence, abstract weighted mean, quasi-arithmetic mean, mixture family, statistical M-mixture, exponential family, Gaussian family, Cauchy scale family, clustering.
    [Show full text]
  • Information Divergences and the Curious Case of the Binary Alphabet
    Information Divergences and the Curious Case of the Binary Alphabet Jiantao Jiao∗, Thomas Courtadey, Albert No∗, Kartik Venkat∗, and Tsachy Weissman∗ ∗Department of Electrical Engineering, Stanford University; yEECS Department, University of California, Berkeley Email: fjiantao, albertno, kvenkat, [email protected], [email protected] Abstract—Four problems related to information divergence answers to the above series of questions imply that the class measures defined on finite alphabets are considered. In three of “interesting” divergence measures can be very small when of the cases we consider, we illustrate a contrast which arises n ≥ 3 (e.g., restricted to the class of f-divergences, or a between the binary-alphabet and larger-alphabet settings. This is surprising in some instances, since characterizations for the multiple of KL divergence). However, in the binary alphabet larger-alphabet settings do not generalize their binary-alphabet setting, the class of “interesting” divergence measures is strik- counterparts. For example, we show that f-divergences are not ingly rich, a point which will be emphasized in our results. In the unique decomposable divergences on binary alphabets that many ways, this richness is surprising since the binary alphabet satisfy the data processing inequality, despite contrary claims in is usually viewed as the simplest setting one can consider. the literature. In particular, we would expect that the class of interesting I. INTRODUCTION divergence measures corresponding to binary alphabets would Divergence measures play a central role in information the- be less rich than the counterpart class for larger alphabets. ory and other branches of mathematics. Many special classes However, as we will see, the opposite is true.
    [Show full text]
  • Statistical Exponential Families: a Digest with Flash Cards
    Statistical exponential families: A digest with flash cards∗ Frank Nielsen†and Vincent Garcia‡ May 16, 2011 (v2.0) Abstract This document describes concisely the ubiquitous class of exponential family distributions met in statistics. The first part recalls definitions and summarizes main properties and duality with Bregman divergences (all proofs are skipped). The second part lists decompositions and re- lated formula of common exponential family distributions. We recall the Fisher-Rao-Riemannian geometries and the dual affine connection information geometries of statistical manifolds. It is intended to maintain and update this document and catalog by adding new distribution items. arXiv:0911.4863v2 [cs.LG] 13 May 2011 ∗See the jMEF library, a Java package for processing mixture of exponential families. Available for download at http://www.lix.polytechnique.fr/~nielsen/MEF/ †Ecole´ Polytechnique (France) and Sony Computer Science Laboratories Inc. (Japan). ‡Ecole´ Polytechnique (France). 1 Part I A digest of exponential families 1 Essentials of exponential families 1.1 Sufficient statistics A fundamental problem in statistics is to recover the model parameters λ from a given set of observations x1, ..., etc. Those samples are assumed to be randomly drawn from an independent and identically-distributed random vector with associated density p(x; λ). Since the sample set is finite, statisticians estimate a close approximation λˆ of the true parameter. However, a surprising fact is that one can collect and concentrate from a random sample all necessary information for recovering/estimating the parameters. The information is collected into a few elementary statistics of the random vector, called the sufficient statistic.1 Figure 1 illustrates the notions of statistics and sufficiency.
    [Show full text]
  • Applications of Bregman Divergence Measures in Bayesian Modeling Gyuhyeong Goh University of Connecticut - Storrs, [email protected]
    University of Connecticut OpenCommons@UConn Doctoral Dissertations University of Connecticut Graduate School 7-6-2015 Applications of Bregman Divergence Measures in Bayesian Modeling Gyuhyeong Goh University of Connecticut - Storrs, [email protected] Follow this and additional works at: https://opencommons.uconn.edu/dissertations Recommended Citation Goh, Gyuhyeong, "Applications of Bregman Divergence Measures in Bayesian Modeling" (2015). Doctoral Dissertations. 785. https://opencommons.uconn.edu/dissertations/785 Applications of Bregman Divergence Measures in Bayesian Modeling Gyuhyeong Goh, Ph.D. University of Connecticut, 2015 ABSTRACT This dissertation has mainly focused on the development of statistical theory, methodology, and application from a Bayesian perspective using a general class of di- vergence measures (or loss functions), called Bregman divergence. Many applications of Bregman divergence have played a key role in recent advances in machine learn- ing. My goal is to turn the spotlight on Bregman divergence and its applications in Bayesian modeling. Since Bregman divergence includes many well-known loss func- tions such as squared error loss, Kullback-Leibler divergence, Itakura-Saito distance, and Mahalanobis distance, the theoretical and methodological development unify and extend many existing Bayesian methods. The broad applicability of both Bregman divergence and Bayesian approach can handle diverse types of data such as circular data, high-dimensional data, multivariate data and functional data. Furthermore,
    [Show full text]
  • Jensen-Bregman Logdet Divergence with Application to Efficient
    TRANSACTIONS ON PATTERN ANALYSIS AND MACHINE INTELLIGENCE, DECEMBER 2012 1 Jensen-Bregman LogDet Divergence with Application to Efficient Similarity Search for Covariance Matrices Anoop Cherian, Student Member, IEEE, Suvrit Sra, Arindam Banerjee and Nikolaos Papanikolopoulos, Fellow, IEEE Covariance matrices have found success in several computer vision applications, including activity recognition, visual surveillance, and diffusion tensor imaging. This is because they provide an easy platform for fusing multiple features compactly. An important task in all of these applications is to compare two covariance matrices using a (dis)similarity function, for which the common choice is the Riemannian metric on the manifold inhabited by these matrices. As this Riemannian manifold is not flat, the dissimilarities should take into account the curvature of the manifold. As a result such distance computations tend to slow down, especially when the matrix dimensions are large or gradients are required. Further, suitability of the metric to enable efficient nearest neighbor retrieval is an important requirement in the contemporary times of big data analytics. To alleviate these difficulties, this paper proposes a novel dissimilarity measure for covariances, the Jensen-Bregman LogDet Divergence (JBLD). This divergence enjoys several desirable theoretical properties, at the same time is computationally less demanding (compared to standard measures). Utilizing the fact that the square-root of JBLD is a metric, we address the problem of efficient nearest neighbor retrieval on large covariance datasets via a metric tree data structure. To this end, we propose a K-Means clustering algorithm on JBLD. We demonstrate the superior performance of JBLD on covariance datasets from several computer vision applications.
    [Show full text]
  • Bregman Divergence Bounds and Universality Properties of the Logarithmic Loss Amichai Painsky, Member, IEEE, and Gregory W
    1 Bregman Divergence Bounds and Universality Properties of the Logarithmic Loss Amichai Painsky, Member, IEEE, and Gregory W. Wornell, Fellow, IEEE Abstract—A loss function measures the discrepancy between Moreover, designing a predictor with respect to one measure the true values and their estimated fits, for a given instance may result in poor performance when evaluated by another. of data. In classification problems, a loss function is said to For example, the minimizer of a 0-1 loss may result in be proper if a minimizer of the expected loss is the true underlying probability. We show that for binary classification, an unbounded loss, when measured with a Bernoulli log- the divergence associated with smooth, proper, and convex likelihood loss. In such cases, it would be desireable to design loss functions is upper bounded by the Kullback-Leibler (KL) a predictor according to a “universal” measure, i.e., one that divergence, to within a normalization constant. This implies is suitable for a variety of purposes, and provide performance that by minimizing the logarithmic loss associated with the KL guarantees for different uses. divergence, we minimize an upper bound to any choice of loss from this set. As such the logarithmic loss is universal in the In this paper, we show that for binary classification, the sense of providing performance guarantees with respect to a Bernoulli log-likelihood loss (log-loss) is such a universal broad class of accuracy measures. Importantly, this notion of choice, dominating all alternative “analytically convenient” universality is not problem-specific, enabling its use in diverse (i.e., smooth, proper, and convex) loss functions.
    [Show full text]
  • Generalized Bregman and Jensen Divergences Which Include Some F-Divergences
    GENERALIZED BREGMAN AND JENSEN DIVERGENCES WHICH INCLUDE SOME F-DIVERGENCES TOMOHIRO NISHIYAMA Abstract. In this paper, we introduce new classes of divergences by extend- ing the definitions of the Bregman divergence and the skew Jensen divergence. These new divergence classes (g-Bregman divergence and skew g-Jensen di- vergence) satisfy some properties similar to the Bregman or skew Jensen di- vergence. We show these g-divergences include divergences which belong to a class of f-divergence (the Hellinger distance, the chi-square divergence and the alpha-divergence in addition to the Kullback-Leibler divergence). More- over, we derive an inequality between the g-Bregman divergence and the skew g-Jensen divergence and show this inequality is a generalization of Lin's in- equality. Keywords: Bregman divergence, f-divergence, Jensen divergence, Kullback- Leibler divergence, Jeffreys divergence, Jensen-Shannon divergence, Hellinger distance, Chi-square divergence, Alpha divergence, Centroid, Parallelogram, Lin's inequality. 1. Introduction Divergences are functions measure the discrepancy between two points and play a key role in the field of machine learning, signal processing and so on. Given a set S and p; q 2 S, a divergence is defined as a function D : S × S ! R which satisfies the following properties. 1. D(p; q) ≥ 0 for all p; q 2 S 2. D(p; q) = 0 () p = q The Bregman divergence [7] B (p; q) def= F (p) − F (q) − hp − q; rF (q)i and f- P F def pi divergence [1, 10] Df (pkq) = qif( ) are representative divergences defined by i qi using a strictly convex function, where F; f : S ! R are strictly convex functions and f(1) = 0.
    [Show full text]
  • Bregman Metrics and Their Applications
    BREGMAN METRICS AND THEIR APPLICATIONS By PENGWEN CHEN A DISSERTATION PRESENTED TO THE GRADUATE SCHOOL OF THE UNIVERSITY OF FLORIDA IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE OF DOCTOR OF PHILOSOPHY UNIVERSITY OF FLORIDA 2007 1 °c 2007 Pengwen Chen 2 ACKNOWLEDGMENTS My ¯rst and foremost thanks go to my advisers, Dr. Yunmei Chen and Dr. Murali Rao. Without their constant encouragement, and support, I would not have been to complete this research work. They were very generous with their time and help. Especially, they gave me a lot of helpful mathematical and non-mathematical advice and assistance throughout my research work. I am grateful to my supervisory committee members (William Hager, Gopalakrishnan Jayadeep, Jose Principe, and Rongling Wu) for my study. It is a pleasure to acknowledge their suggestions on this research work. I bene¯ted from every discussion with them. I am especially grateful to Dr. Gopalakrishnan Jayadeep and Dr. William Hager for o®ering numerical courses. Listening to their lectures was a pleasant experience. I would also like to thank the professors in my department who helped me on various occasions, and in particular Dr. John Klauder for our enjoyable discussions during my ¯rst year. Last but not least, I want to thank my wife April, my parents and her parents for their understanding and support. 3 TABLE OF CONTENTS page ACKNOWLEDGMENTS ................................. 3 LIST OF TABLES ..................................... 7 LIST OF FIGURES .................................... 8 ABSTRACT ........................................ 9 CHAPTER 1 MOTIVATION AND OUTLINE OF THIS PAPER ................ 11 2 BREGMAN METRICS ............................... 15 2.1 Introduction ................................... 15 2.2 Preliminaries and Notations .........................
    [Show full text]
  • Low-Rank Kernel Learning with Bregman Matrix Divergences
    Journal of Machine Learning Research 10 (2009) 341-376 Submitted 8/07; Revised 10/08; Published 2/09 Low-Rank Kernel Learning with Bregman Matrix Divergences Brian Kulis [email protected] Maty´ as´ A. Sustik [email protected] Inderjit S. Dhillon [email protected] Department of Computer Sciences University of Texas at Austin Austin, TX 78712, USA Editor: Michael I. Jordan Abstract In this paper, we study low-rank matrix nearness problems, with a focus on learning low-rank positive semidefinite (kernel) matrices for machine learning applications. We propose efficient algorithms that scale linearly in the number of data points and quadratically in the rank of the input matrix. Existing algorithms for learning kernel matrices often scale poorly, with running times that are cubic in the number of data points. We employ Bregman matrix divergences as the measures of nearness—these divergences are natural for learning low-rank kernels since they preserve rank as well as positive semidefiniteness. Special cases of our framework yield faster algorithms for various existing learning problems, and experimental results demonstrate that our algorithms can effectively learn both low-rank and full-rank kernel matrices. Keywords: kernel methods, Bregman divergences, convex optimization, kernel learning, matrix nearness 1. Introduction Underlying many machine learning algorithms is a measure of distance, or divergence, between data objects. A number of factors affect the choice of the particular divergence measure used: the data may be intrinsically suited for a specific divergence measure, an algorithm may be faster or easier to implement for some measure, or analysis may be simpler for a particular measure.
    [Show full text]