Automatic, Dynamic, and Nearly Optimal Learning Rate Specification by Local Quadratic Approximation

Total Page:16

File Type:pdf, Size:1020Kb

Automatic, Dynamic, and Nearly Optimal Learning Rate Specification by Local Quadratic Approximation Automatic, Dynamic, and Nearly Optimal Learning Rate Specification by Local Quadratic Approximation Yingqiu Zhu Yu Chen Danyang Huang∗ [email protected] [email protected] [email protected] School of Statistics, Renmin Guanghua School of Management, Center for Applied Statistics, Renmin University of China Peking University University of China Beijing, China Beijing, China School of Statistics, Renmin University of China Beijing, China Bo Zhang Hansheng Wang [email protected] [email protected] Center for Applied Statistics, Renmin Guanghua School of Management, University of China Peking University School of Statistics, Renmin Beijing, China University of China Beijing, China ABSTRACT experiments have been conducted to prove the strengths of In deep learning tasks, the learning rate determines the up- the proposed LQA method. date step size in each iteration, which plays a critical role in gradient-based optimization. However, the determination CCS CONCEPTS of the appropriate learning rate in practice typically replies • Computing methodologies ! Neural networks; Batch on subjective judgement. In this work, we propose a novel learning. optimization method based on local quadratic approximation (LQA). In each update step, given the gradient direction, we KEYWORDS locally approximate the loss function by a standard quadratic neural networks, gradient descent, learning rate, machine function of the learning rate. Then, we propose an approx- learning imation step to obtain a nearly optimal learning rate in a computationally efficient way. The proposed LQA method ACM Reference Format: has three important features. First, the learning rate is au- Yingqiu Zhu, Yu Chen, Danyang Huang, Bo Zhang, and Hansheng tomatically determined in each update step. Second, it is Wang. 2020. Automatic, Dynamic, and Nearly Optimal Learning dynamically adjusted according to the current loss function Rate Specification by Local Quadratic Approximation. In CIKM ’20: value and the parameter estimates. Third, with the gradi- 29th ACM International Conference on Information and Knowledge Management, October 19–23, 2020, Galway, Ireland. ACM, New York, ent direction fixed, the proposed method leads to nearly the NY, USA, 10 pages. https://doi.org/10.1145/1122445.1122456 greatest reduction in terms of the loss function. Extensive arXiv:2004.03260v1 [stat.ML] 7 Apr 2020 ∗Corresponding Author 1 INTRODUCTION In recent years, the development of deep learning has led to Permission to make digital or hard copies of all or part of this work for remarkable success in visual recognition [7, 10, 14], speech personal or classroom use is granted without fee provided that copies are not made or distributed for profit or commercial advantage and that copies bear recognition [8, 29], natural language processing [2, 5], and this notice and the full citation on the first page. Copyrights for components many other fields. For different learning tasks, researchers of this work owned by others than ACM must be honored. Abstracting with have developed different network frameworks, including credit is permitted. To copy otherwise, or republish, to post on servers or to deep convolutional neural networks [14, 16], recurrent neu- redistribute to lists, requires prior specific permission and/or a fee. Request ral networks [6], graph convolutional networks [12] and rein- permissions from [email protected]. forcement learning [19, 20]. Although the network structure CIKM ’20, October 19–23, 2020, Galway, Ireland © 2020 Association for Computing Machinery. could be totally different, the training methods are typically ACM ISBN 978-1-4503-XXXX-X/18/06...$15.00 similar. They are often gradient decent methods, which are https://doi.org/10.1145/1122445.1122456 developed based on backpropagation [24]. CIKM ’20, October 19–23, 2020, Galway, Ireland Zhu et al. Given a differentiable objective function, gradient descent compute the Hessian matrix for the loss function. However, is a natural and efficient method for optimization. Among this solution is computationally expensive. Because many various gradient descent methods, the stochastic gradient de- complex deep neural networks involve a large number of scent (SGD) method [23] plays a critical role. In the standard parameters, this makes the Hessian matrix have ultra-high SGD method, the first-order gradient of a randomly selected dimensionality. To solve this problem, we propose here a sample is used to iteratively update the parameter estimates novel approximation step. Note that, given a fixed gradient of a network. Specifically, the parameter estimates are ad- direction, the loss function can be approximated by a stan- justed with the negative of the random gradient multiplied dard quadratic function with the learning rate as the only by a step size. The step size is called the learning rate. Many input variable. For a univariate quadratic function such as generalized methods based on the SGD method have been this, there are only two unknown coefficients. They are the proposed [1, 4, 11, 25, 26]. Most of these extensions specify linear term coefficient and the quadratic term coefficient. improved update rules to adjust the direction or the step size. As long as these two coefficients can be determined, the However, [1] pointed out that, many hand-designed update optimal learning rate can be obtained. To estimate the two rules are designed for circumstances with certain characteris- unknown coefficients, one can try, for example, two different tics, such as sparsity or nonconvexity. As a result, rule-based but reasonably small learning rates. Then, the correspond- methods might perform well in some cases but poorly in ing objective function can be evaluated. This step leads to others. Consequently, an optimizer with an automatically two equations, which can be solved to estimate the two un- adjusted update rule is preferable. known coefficients in the quadratic approximation function. An update rule contains two important components: one Thereafter, the optimal learning rate can be obtained. is the update direction, and the other is the step size. The Our contributions: We propose an automatic, dynamic learning rate determines the step size, which plays a sig- and nearly optimal learning rate tuning algorithm that has nificant role in optimization. If it is set inappropriately, the the following three important features. parameter estimates could be suboptimal. Empirical experi- (1) The algorithm is automatic. In other words, it leads to ence suggests that a relatively larger learning rate might be an optimization method with little subjective judgment. preferred in the early stages of the optimization. Otherwise, (2) The method is dynamic in the sense that the learning the algorithm might converge very slowly. In contrast, a rate used in each update step is different. It is dynamically relatively smaller learning rate should be used in the later adjusted according to the current status of the loss function stages. Otherwise, the objective function cannot be fully op- and the parameter estimates. Typically, larger rates are used timized. This phenomenon inspires us to design a method in the earlier iterations, while smaller rates are used in the to automatically search for an optimal learning rate in each latter iterations. update step during optimization. (3) The learning rate derived from the proposed method is To this end, we propose here a novel optimization method nearly optimal. For each update step, by the novel quadratic based on local quadratic approximation (LQA). It tunes the approximation, the learning rate leads to almost the greatest learning rate in a dynamic, automatic and nearly optimal reduction in terms of the loss function. Here, “almost” refers manner. The method can obtain the best step size in each up- to the fact that the loss function is locally approximated by date step. Intuitively, given a search direction, what should a quadratic function with unknown coefficients numerically be the best step size? One natural definition is the step size estimated. For this particular update step, with the gradient that can lead to the greatest reduction in the global loss. Ac- direction fixed, and among all the possible learning rates, the cordingly, the step size itself should be treated as a parameter, one determined by the proposed method can result in nearly that needs to be optimized. For this purpose, the proposed the greatest reduction in terms of the loss function. method can be decomposed into two important steps. They The rest of this article is organized as follows. In Section are the expansion step and the approximation step. First, in 2, we review related works on gradient-based optimizers. the expansion step, we conduct Taylor expansion on the loss Section 3 presents the proposed algorithm in detail. In Sec- function, around the current parameter estimates. Accord- tion 4, we verify the performance of the proposed method ingly, the objective function can be locally approximated by through empirical studies on open datasets. Then, conclud- a quadratic function in terms of the learning rate. Then, the ing remarks are given in Section 5. learning rate is also treated as a parameter to be optimized, which leads to a nearly optimal determination of the learning 2 RELATED WORK rate for this particular update step. To optimize a loss function, two important components need Second, to implement this idea, we need to compute the to be specified: the update direction and the step size. Ideally, first- and second-order derivatives of the objective function the best update direction should be the gradient computed for on the gradient direction. One way to solve this problem is to the loss function based on the whole data. For convenience, Automatic, Dynamic, and Nearly Optimal Learning Rate Specification by Local Quadratic Approximation CIKM ’20, October 19–23, 2020, Galway, Ireland we refer to it as the global gradient. Since the calculation of 3.1 Stochastic gradient descent the global gradient is computationally expensive, the SGD Assume we have a total of N samples. They are indexed by method [23] uses the gradient estimated based on a stochas- 1 ≤ i ≤ N and collected by S = f1; 2; ··· ; N g.
Recommended publications
  • An Ε-Relaxation Method for Separable Convex Cost Generalized Network Flow Problems
    Math. Program., Ser. A 88: 85–104 (2000) Digital Object Identifier (DOI) 10.1007/s101070000153 Paul Tseng · Dimitri P. Bertsekas An -relaxation method for separable convex cost generalized network flow problems? Received: November 10, 1996 / Accepted: October 1999 Published online April 20, 2000 – Springer-Verlag 2000 Abstract. We generalize the -relaxation method of [14] for the single commodity, linear or separable convex cost network flow problem to network flow problems with positive gains. The method maintains -complementary slackness at all iterations and adjusts the arc flows and the node prices so as to satisfy flow conservation upon termination. Each iteration of the method involves either a price change on a node or a flow change along an arc or a flow change along a simple cycle. Complexity bounds for the method are derived. For one implementation employing -scaling, the bound is polynomial in the number of nodes N, the number of arcs A, a certain constant 0 depending on the arc gains, and ln(0=),where0 and denote, respectively, the initial and the final tolerance . 1. Introduction Consider a directed graph G D .N ; A/ with node set N Df1;::: ;Ng and arc set A ⊂ N × N . We denote by N the number of nodes and by A the number of arcs. (The implicit assumption that there exists at most one arc in each direction between any pair of nodes is made for notational convenience and can be dispensed with.) We are given, for each node i 2 N , a scalar si (supply of i) and, for each arc .i; j/ 2 A, a positive scalar γij (gain of .i; j/) and a convex, closed, proper function fij V<!<[f1g (cost function of .i; j/).
    [Show full text]
  • ISMP BP Front
    Conference Program 1 TABLE OF CONTENTS Welcome from the Chair . 2 Schedule of Daily Events & Sessions . 3 20TH INTERNATIONAL SYMPOSIUM ON Speaker Information . 5 MATHEMATICAL PROGRAMMING August 23-28, 2009 Social Events & Excursions . 6 Chicago, Illinois, USA Internet Access . 7 Opening Session & Prizes . 8 Area Map . 9 PROGRAM ORGANIZING COMMITTEE COMMITTEE Exhibitors . 10 Chair Mihai Anitescu John R. Birge Argonne National Lab Plenary & Semi-Plenary Sessions . 12 University of Chicago USA Track Schedule . 17 USA John R. Birge Karen Aardal University of Chicago Floor Plans & Maps . 22 Centrum Wiskunde & USA Informatica Michael Ferris Cluster Chairs . 24 The Netherlands University of Wisconsin- Michael Ferris Madison Technical Sessions University of Wisconsin- USA Monday . 25 Madison Jeff Linderoth USA University of Wisconsin- Tuesday . 49 Michael Goemans Madison Wednesday . 74 Massachusetts Institute of USA Thursday . 98 Technology Todd Munson USA Argonne National Lab Friday . 121 Michael Jünger USA Universität zu Köln Jorge Nocedal Session Chair Index . 137 Germany Northwestern University Masakazu Kojima USA Author Index . 139 Tokyo Institute of Technology Jong-Shi Pang Session Index . 147 Japan University of Illinois at Urbana- Rolf Möhring Champaign Advertisers Technische Universität Berlin USA World Scientific . .150 Germany Stephen J. Wright Andy Philpott University of Wisconsin- IOS Press . .151 University of Auckland Madison OptiRisk Systems . .152 New Zealand USA Claudia Sagastizábal Taylor & Francis . .153 CEPEL LINDO Systems . .154 Brazil Springer . .155 Stephen J. Wright University of Wisconsin- Mosek . .156 Madison USA Sponsors . Back Cover Yinyu Ye Stanford University USA 2 Welcome from the Chair On behalf of the Organizing Committee and The University of Chicago, I The University of Chicago welcome you to ISMP 2009, the 20th International Symposium on Booth School of Business Mathematical Programming.
    [Show full text]
  • The Global Technology Revolution China, In-Depth Analyses
    Transportation, Space, and Technology A RAND INFRASTRUCTURE, SAFETY, AND ENVIRONMENT PROGRAM THE ARTS This PDF document was made available from www.rand.org as a public CHILD POLICY service of the RAND Corporation. CIVIL JUSTICE EDUCATION ENERGY AND ENVIRONMENT Jump down to document6 HEALTH AND HEALTH CARE INTERNATIONAL AFFAIRS NATIONAL SECURITY The RAND Corporation is a nonprofit research POPULATION AND AGING organization providing objective analysis and effective PUBLIC SAFETY solutions that address the challenges facing the public SCIENCE AND TECHNOLOGY and private sectors around the world. SUBSTANCE ABUSE TERRORISM AND HOMELAND SECURITY TRANSPORTATION AND INFRASTRUCTURE WORKFORCE AND WORKPLACE Support RAND Purchase this document Browse Books & Publications Make a charitable contribution For More Information Visit RAND at www.rand.org Explore the RAND Transportation, Space, and Technology Program View document details Limited Electronic Distribution Rights This document and trademark(s) contained herein are protected by law as indicated in a notice appearing later in this work. This electronic representation of RAND intellectual property is provided for non-commercial use only. Unauthorized posting of RAND PDFs to a non-RAND Web site is prohibited. RAND PDFs are protected under copyright law. Permission is required from RAND to reproduce, or reuse in another form, any of our research documents for commercial use. For information on reprint and linking permissions, please see RAND Permissions. This product is part of the RAND Corporation technical report series. Reports may include research findings on a specific topic that is limited in scope; present discus- sions of the methodology employed in research; provide literature reviews, survey instruments, modeling exercises, guidelines for practitioners and research profes- sionals, and supporting documentation; or deliver preliminary findings.
    [Show full text]
  • Optima 82 Publishes the Obituary of Paul Tseng by His Friends Affected by the Proposed Change; Only Their Subtitles Would Change
    OPTIMA Mathematical Programming Society Newsletter 82 Steve Wright MPS-sponsored meetings: the International Conference on Stochas- MPS Chair’s Column tic Programming (ICSP) XII (Halifax, August 14–20), the Interna- tional Conference on Engineering Optimization (Lisbon, September 6–9), and the IMA Conference on Numerical Linear Algebra and March 16, 2010. You should recently have received a letter con- Optimization (Birmingham, September 13–15). cerning a possible change of name for MPS, to “Mathematical Op- timization Society”. This issue has been discussed in earnest since ISMP 2009, where it was raised at the Council and Business meet- ings. Some of you were kind enough to send me your views follow- Note from the Editors ing the mention in my column in Optima 80. Many (including me) believe that the term “optimization” is more widely recognized and The topic of this issue of Optima is Mechanism Design –aNobel better understood as an appellation for our field than the current prize winning theoretical field of economics. name, both among those working in the area and our colleagues We present the main article by Jay Sethuraman, which introduces in other disciplines. Others believe that the current name should the main concepts and existence results for some of the models be retained, as it has the important benefits of tradition, branding, arising in mechanism design theory. The discussion column by Garud and name recognition. To ensure archival continuity in the literature, Iyengar and Anuj Kumar address a specific example of such a model the main titles of our journals Mathematical Programming, Series A which can be solved by the means of optimization.
    [Show full text]
  • 2013 Newsletter
    AUTUMN 2013 NEWSLETTER OF THE DEPARTMENT OF MATHEMATICS AT THE UNIVERSITY OF WASHINGTON Mathematics NEWS 1 DEPARTMENT OF MATHEMATICS NEWS Message From The Chair I made a cameo appearance on to continuing his research and teaching, Jack has taken on the this page twelve years ago, during university’s largest role in shared governance, that of the chair a one-year stint as chair before I of our Faculty Senate. headed across the street to the Our undergraduate majors continue to amaze. Last spring, dean’s office of the College of Sam Hopkins became our tenth student in the past twelve Arts and Sciences. Leaving the years to receive the Dean’s Medal in the Natural Sciences. department was difficult, what I’ve been following Sam’s career since he was a child, and with mathematics being at the so it was a special pleasure to have him in my algebra class center of my intellectual life two winters ago. He is now studying computer science at since childhood and my social Cornell, with funding from an NSF graduate fellowship. life for all of adulthood. But I See also mention on a later page of the awarding to two survived-prospered even-to the point that I returned to the additional math majors, David Jekel and Eric Lei, of the department in 2008 with trepidation, all the more as we university’s Freshman and Junior Medals. And speaking of were soon enmeshed in severe university-wide budget cuts as NSF fellowships, Ioana Dumitriu’s student Elliot Paquette fallout of the nation’s economic downturn.
    [Show full text]
  • Chapter 5: Lasso and Sparsity in Statistics
    5 Lasso and Sparsity in Statistics Robert J. Tibshirani Stanford University, Stanford, CA In this chapter, I discuss the lasso and sparsity, in the area of supervised learn- ing that has been the focus of my research and that of many other statisticians. This area can be described as follows. Many statistical problems involve mod- eling important variables or outcomes as functions of predictor variables. One objective is to produce models that allow predictions of outcomes that are as accurate as possible. Another is to develop an understanding of which variables in a set of potential predictors are strongly related to the outcome variable. For example, the outcome of interest might be the price of a company's stock in a week's time, and potential predictor variables might include information about the company, the sector of the economy it operates in, recent fluctu- ations in the stock's price, and other economic factors. With technological development and the advent of huge amounts of data, we are frequently faced with very large numbers of potential predictor variables. 5.1 Sparsity, `1 Penalties and the Lasso The most basic statistical method for what is called supervised learning relates an outcome variable Y to a linear predictor variables x1; : : : ; xp, viz. p X Y = β0 + xjβj + , (5.1) j=1 where is an error term that represents the fact that knowing x1; : : : ; xp does not normally tell us exactly what Y will be. We often refer to the right-hand side of (5.1), minus , as the predicted outcome. These are referred to as linear regression models.
    [Show full text]
  • Copyright © by SIAM. Unauthorized Reproduction of This Article Is Prohibited. EXACT REGULARIZATION of CONVEX PROGRAMS 1327
    SIAM J. OPTIM. c 2007 Society for Industrial and Applied Mathematics Vol. 18, No. 4, pp. 1326–1350 EXACT REGULARIZATION OF CONVEX PROGRAMS∗ † ‡ MICHAEL P. FRIEDLANDER AND PAUL TSENG Abstract. The regularization of a convex program is exact if all solutions of the regularized problem are also solutions of the original problem for all values of the regularization parameter below some positive threshold. For a general convex program, we show that the regularization is exact if and only if a certain selection problem has a Lagrange multiplier. Moreover, the regularization pa- rameter threshold is inversely related to the Lagrange multiplier. We use this result to generalize an exact regularization result of Ferris and Mangasarian [Appl. Math. Optim., 23 (1991), pp. 266–273] involving a linearized selection problem. We also use it to derive necessary and sufficient condi- tions for exact penalization, similar to those obtained by Bertsekas [Math. Programming, 9 (1975), pp. 87–99] and by Bertsekas, Nedi´c, and Ozdaglar [Convex Analysis and Optimization, Athena Sci- entific, Belmont, MA, 2003]. When the regularization is not exact, we derive error bounds on the distance from the regularized solution to the original solution set. We also show that existence of a “weak sharp minimum” is in some sense close to being necessary for exact regularization. We illustrate the main result with numerical experiments on the 1 regularization of benchmark (degen- erate) linear programs and semidefinite/second-order cone programs. The experiments demonstrate the usefulness of 1 regularization in finding sparse solutions. Key words. convex program, conic program, linear program, regularization, exact penalization, Lagrange multiplier, degeneracy, sparse solutions, interior-point algorithms AMS subject classifications.
    [Show full text]
  • 2010 Mathematics Newsletter
    AUTUMN 2010 NEWSLETTER OF THE DEPARTMENT OF MATHEMATICS AT THE UNIVERSITY OF WASHINGTON Mathematics NEWS 1 DEPARTMENT OF MATHEMATICS NEWS MESSAGE FROM THE CHAIR The 2009–10 academic year, which now followed by an RTG grant, both from the NSF, started with the tragic loss of our and from a number of new endowments established by colleague Paul Tseng, was trans- the Department’s friends and alumni. formed into a most exciting one Despite the tight job market, our PhD graduates con- by our students and faculty. High- tinue to place into excellent positions. During the past lights you will read about in this three years alone, they have received postdoctoral newsletter include the Putnam Fel- appointments at Penn, Columbia, Princeton, Stanford, lowship won by Will Johnson, the Northwestern, MIT, UC Davis, UBC and Warwick, and UW Sophomore and Junior Medals jobs at Chevron, Microsoft and Google. awarded to Mark Bun and Will Johnson, the selection of the team of Mark Bun, Jerry Li, and Ian Zemke as As students, teaching assistants and researchers, our one of the nine Outstanding Winners among the 2,254 graduate students make critical contributions to every teams that participated in the Mathematical Contest aspect of the Department’s mission. The Department in Modeling, the Dean’s Medal and a National Science has worked very hard during the past dozen years Foundation (NSF) Graduate Fellowship won by Nate to build a vigorous graduate program of nearly 90 Bottman, an equally prestigious Department of Energy students. I am very pleased to see that we have main- Graduate Fellowship awarded to Genia Vogman, NSF tained the size, quality and morale of the program Postdoctoral Fellowships awarded to Jim Gill and our even as we go through the worst economic crisis of PhD graduate Catherine Williams, the election of Gun- our lifetimes.
    [Show full text]
  • Curriculum Vitae James V
    Curriculum Vitae James V. Burke April, 2008 University of Washington Phone: 206–543–6163 Department of Mathematics FAX: 206–543–0397 Box 354350 E–mail: [email protected] Seattle, WA 98195–4350 URL: http://www.math.washington.edu/ burke/ EDUCATION AND APPOINTMENTS Education Ph.D., Mathematics, University of Illinois at Urbana-Champaign, October, 1983. B.S., Mathematics, Knox College, Galesburg, Illinois, May 1977. Appointments University of Washington 97- : Full Professor, Mathematics 06- : Associate Director, Resource Facility for Population Kinetics, Bioengineering 00- : Scientific Computing Team Lead, Resource Facility for Population Kinetics, Bioengineering 02- : Adjunct Professor, Statistics 00- : Adjunct Professor, Bioengineering 98- : Adjunct Professor, Applied Mathematics 01-05: Director, Applied and Computational Mathematical Sciences Program 91-97: Associate Professor, Mathematics 85-91: Assistant Professor, Mathematics University of Kentucky 83-85: Assistant Professor, Mathematics Visiting Spring 93: Argonne National Laboratories, Argonne, Illinois Autumn 92: University of New South Wales, Sydney, Australia Summer 90: Universit´ede Pau et C.N.R.S., Pau, France Summer 89: University of New South Wales, Sydney, Australia Summer 85: Argonne National Laboratories, Argonne, Illinois RESEARCH Grant Support National Institutes of Health 03-08: NIH/NIBIB 2 P41 EB01975 (PI Dr. Paolo Vicini) (03/01/2003 - 02/28/2008) Resource Facility for Population Kinetics Role: Investigator 30% salary support Total Award: $4.7 million 98-02: NIH/BRTP 1 P41 RR12609-02 (PI Dr.s David Foster and Paolo Vicini) (03/01/98 - 02/29/02) Resource Facility for Population Kinetics Role: Investigator 20% salary support Total Award: $4.7 million 96-97: NIH/BRTP 1 P41 (PI Dr.
    [Show full text]
  • Joint Descent: Training and Tuning Simultane
    Under review as a conference paper at ICLR 2021 JOINT DESCENT:TRAINING AND TUNING SIMULTANE- OUSLY Anonymous authors Paper under double-blind review ABSTRACT Typically in machine learning, training and tuning are done in an alternating manner: for a fixed set of hyperparameters y, we apply gradient descent to our objective f(x; y) over trainable variables x until convergence; then, we apply a tuning step over y to find another promising setting of hyperparameters. Because the full training cycle is completed before a tuning step is applied, the optimization procedure greatly emphasizes the gradient step, which seems justified as first- order methods provides a faster convergence rate. In this paper, we argue that an equal emphasis on training and tuning lead to faster convergence both theoretically and empirically. We present Joint Descent (JD) and a novel theoretical analysis of acceleration viap an unbiased gradient estimate to give an optimal iteration complexity of O( κny log(n/)), where κ is the condition number and ny is the dimension of y. This provably improves upon the naive classical bound and implies that we essentially train for free if we apply equal emphasis on training and tuning steps. Empirically, we observe that an unbiased gradient estimate achieves the best convergence results, supporting our theory. 1 INTRODUCTION For many practical machine learning tasks, the importance of efficient hyperparameter tuning in order to achieve state-of-the-art performance is often overlooked. Because modern neural network architec- tures and learning models have become increasingly complicated, the need to precisely and efficiently tune the growing number of hyperparameters has also increased in traditional supervised learning (Snoek et al., 2012), as well as diverse applications such as reinforcement learning (Choromanski et al., 2018), neural network attacks (Papernot et al., 2017), and generative adversarial networks (Goodfellow et al., 2014).
    [Show full text]
  • Mathematics at the University of Washington
    AUTUMN 2004 , VOLUME 13 NEWSLETTER OF THE DEPARTMENT OF MATHEMATICS AT THE UNIVERSITY OF WASHINGTON NEWS Mathematics MESSAGE FROM THE CHAIR Graduate students are the next generation of mathematical year’s VIGRE competition on the basis of our achievements, scientists and academics, whose training is the goal of our particularly in graduate education and research. Our new graduate program. Contributions of graduate students, like five-year VIGRE grant will fund eight to ten graduate those of the faculty, underlie all of our work: They serve as fellowships during each year of funding. teaching assistants (TAs) in undergraduate courses, partici- Recruitment of excellent students is essential for the success pate in outreach activities and, as they make progress in of our program. At the UW, we face the problem that TA our program, become active researchers. You will find in salaries lag behind those of our competition. Four years ago this newsletter reports on last year’s activities and successes our department introduced a “support plan” that guarantees such as new VIGRE and GK-12 grants, a striking increase almost every incoming Ph.D. student a supplementary in the number of Math majors, our most recent win in the stipend for five years, subject to satisfactory academic prog- Mathematical Contest in Modeling, and the award of the ress. The plan relies on resources made available to us on a 2004 Dean’s Medal in Science to Terri Moore. year-to-year basis by a diverse collection of supporters such The typical Ph.D. in Mathematics takes five to six years to as the ARCS foundation, Microsoft and the UW Graduate complete and presents unique challenges.
    [Show full text]
  • Exact Regularization of Convex Programs
    EXACT REGULARIZATION OF CONVEX PROGRAMS MICHAEL P. FRIEDLANDER∗ AND PAUL TSENG† November 18, 2006 Abstract. The regularization of a convex program is exact if all solutions of the regularized problem are also solutions of the original problem for all values of the regularization parameter below some positive threshold. For a general convex program, we show that the regularization is exact if and only if a certain selection problem has a Lagrange multiplier. Moreover, the regularization parameter threshold is inversely related to the Lagrange multiplier. We use this result to generalize an exact regularization result of Ferris and Mangasarian (1991) involving a linearized selection problem. We also use it to derive necessary and sufficient conditions for exact penalization, similar to those obtained by Bertsekas (1975) and by Bertsekas, Nedi´c, and Ozdaglar (2003). When the regularization is not exact, we derive error bounds on the distance from the regularized solution to the original solution set. We also show that existence of a “weak sharp minimum” is in some sense close to being necessary for exact regularization. We illustrate the main result with numerical experiments on the ℓ1 regularization of benchmark (degenerate) linear programs and semidefinite/second-order cone programs. The experiments demonstrate the usefulness of ℓ1 regularization in finding sparse solutions. Key words. convex program, conic program, linear program, regularization, exact penalization, Lagrange multiplier, degeneracy, sparse solutions, interior-point algorithms 1. Introduction. A common approach to solving an ill-posed problem—one whose solution is not unique or is acutely sensitive to data perturbations—is to con- struct a related problem whose solution is well behaved and deviates only slightly from a solution of the original problem.
    [Show full text]