Foundations of Machine Learning Adaptive Computation and Machine Learning

Total Page:16

File Type:pdf, Size:1020Kb

Foundations of Machine Learning Adaptive Computation and Machine Learning Foundations of Machine Learning Adaptive Computation and Machine Learning Thomas Dietterich, Editor Christopher Bishop, David Heckerman, Michael Jordan, and Michael Kearns, Associate Editors A complete list of books published in The Adaptive Computations and Machine Learning series appears at the back of this book. Foundations of Machine Learning Mehryar Mohri, Afshin Rostamizadeh, and Ameet Talwalkar The MIT Press Cambridge, Massachusetts London, England c 2012 Massachusetts Institute of Technology All rights reserved. No part of this book may be reproduced in any form by any electronic or mechanical means (including photocopying, recording, or information storage and retrieval) without permission in writing from the publisher. MIT Press books may be purchased at special quantity discounts for business or sales promotional use. For information, please email special [email protected] or write to Special Sales Department, The MIT Press, 55 Hayward Street, Cam- bridge, MA 02142. This book was set in LATEX by the authors. Printed and bound in the United States of America. Library of Congress Cataloging-in-Publication Data Mohri, Mehryar. Foundations of machine learning / Mehryar Mohri, Afshin Rostamizadeh, and Ameet Talwalkar. p. cm. - (Adaptive computation and machine learning series) Includes bibliographical references and index. ISBN 978-0-262-01825-8 (hardcover : alk. paper) 1. Machine learning. 2. Computer algorithms. I. Rostamizadeh, Afshin. II. Talwalkar, Ameet. III. Title. Q325.5.M64 2012 006.3’1-dc23 2012007249 10987654321 Contents Preface xi 1 Introduction 1 1.1Applicationsandproblems........................ 1 1.2Definitionsandterminology....................... 3 1.3Cross-validation.............................. 5 1.4Learningscenarios............................ 7 1.5Outline.................................. 8 2 The PAC Learning Framework 11 2.1ThePAClearningmodel......................... 11 2.2Guaranteesforfinitehypothesissets—consistentcase........ 17 2.3Guaranteesforfinitehypothesissets—inconsistentcase....... 21 2.4Generalities................................ 24 2.4.1 Deterministicversusstochasticscenarios............ 24 2.4.2 Bayeserrorandnoise...................... 25 2.4.3 Estimationandapproximationerrors.............. 26 2.4.4 Modelselection.......................... 27 2.5Chapternotes............................... 28 2.6Exercises................................. 29 3 Rademacher Complexity and VC-Dimension 33 3.1Rademachercomplexity......................... 34 3.2Growthfunction............................. 38 3.3VC-dimension............................... 41 3.4Lowerbounds............................... 48 3.5Chapternotes............................... 54 3.6Exercises................................. 55 4 Support Vector Machines 63 4.1Linearclassification............................ 63 4.2SVMs—separablecase......................... 64 vi 4.2.1 Primaloptimizationproblem.................. 64 4.2.2 Supportvectors.......................... 66 4.2.3 Dualoptimizationproblem................... 67 4.2.4 Leave-one-outanalysis...................... 69 4.3SVMs—non-separablecase....................... 71 4.3.1 Primaloptimizationproblem.................. 72 4.3.2 Supportvectors.......................... 73 4.3.3 Dualoptimizationproblem................... 74 4.4Margintheory............................... 75 4.5Chapternotes............................... 83 4.6Exercises................................. 84 5 Kernel Methods 89 5.1Introduction................................ 89 5.2Positivedefinitesymmetrickernels................... 92 5.2.1 Definitions............................ 92 5.2.2 ReproducingkernelHilbertspace................ 94 5.2.3 Properties............................. 96 5.3Kernel-basedalgorithms......................... 100 5.3.1 SVMswithPDSkernels..................... 100 5.3.2 Representertheorem....................... 101 5.3.3 Learningguarantees....................... 102 5.4Negativedefinitesymmetrickernels...................103 5.5Sequencekernels............................. 106 5.5.1 Weightedtransducers...................... 106 5.5.2 Rationalkernels......................... 111 5.6Chapternotes...............................115 5.7Exercises................................. 116 6 Boosting 121 6.1Introduction................................121 6.2AdaBoost................................. 122 6.2.1 Boundontheempiricalerror.................. 124 6.2.2 Relationshipwithcoordinatedescent..............126 6.2.3 Relationshipwithlogisticregression.............. 129 6.2.4 Standarduseinpractice..................... 129 6.3Theoreticalresults............................ 130 6.3.1 VC-dimension-basedanalysis.................. 131 6.3.2 Margin-basedanalysis...................... 131 6.3.3 Marginmaximization...................... 136 6.3.4 Game-theoreticinterpretation..................137 vii 6.4Discussion................................. 140 6.5Chapternotes...............................141 6.6Exercises................................. 142 7 On-Line Learning 147 7.1Introduction................................147 7.2Predictionwithexpertadvice...................... 148 7.2.1 MistakeboundsandHalvingalgorithm............ 148 7.2.2 Weightedmajorityalgorithm.................. 150 7.2.3 Randomizedweightedmajorityalgorithm........... 152 7.2.4 Exponentialweightedaveragealgorithm............ 156 7.3Linearclassification............................159 7.3.1 Perceptronalgorithm.......................160 7.3.2 Winnowalgorithm........................ 168 7.4On-linetobatchconversion....................... 171 7.5Game-theoreticconnection........................174 7.6Chapternotes...............................175 7.7Exercises................................. 176 8 Multi-Class Classification 183 8.1Multi-classclassificationproblem.................... 183 8.2Generalizationbounds.......................... 185 8.3Uncombinedmulti-classalgorithms................... 191 8.3.1 Multi-classSVMs.........................191 8.3.2 Multi-classboostingalgorithms................. 192 8.3.3 Decisiontrees........................... 194 8.4 Aggregated multi-class algorithms ................... 198 8.4.1 One-versus-all...........................198 8.4.2 One-versus-one.......................... 199 8.4.3 Error-correctioncodes...................... 201 8.5Structuredpredictionalgorithms.................... 203 8.6Chapternotes...............................206 8.7Exercises................................. 207 9 Ranking 209 9.1Theproblemofranking......................... 209 9.2Generalizationbound.......................... 211 9.3RankingwithSVMs........................... 213 9.4RankBoost................................ 214 9.4.1 Boundontheempiricalerror.................. 216 9.4.2 Relationshipwithcoordinatedescent..............218 viii 9.4.3 Marginboundforensemblemethodsinranking ....... 220 9.5Bipartiteranking............................. 221 9.5.1 Boostinginbipartiteranking.................. 222 9.5.2 AreaundertheROCcurve................... 224 9.6Preference-basedsetting......................... 226 9.6.1 Second-stagerankingproblem..................227 9.6.2 Deterministicalgorithm..................... 229 9.6.3 Randomizedalgorithm......................230 9.6.4 Extensiontootherlossfunctions................ 231 9.7Discussion................................. 232 9.8Chapternotes...............................233 9.9Exercises................................. 234 10 Regression 237 10.1Theproblemofregression........................ 237 10.2Generalizationbounds.......................... 238 10.2.1Finitehypothesissets...................... 238 10.2.2Rademachercomplexitybounds.................239 10.2.3Pseudo-dimensionbounds.................... 241 10.3Regressionalgorithms.......................... 245 10.3.1Linearregression......................... 245 10.3.2Kernelridgeregression...................... 247 10.3.3Supportvectorregression.................... 252 10.3.4Lasso............................... 257 10.3.5Groupnormregressionalgorithms............... 260 10.3.6On-lineregressionalgorithms.................. 261 10.4Chapternotes...............................262 10.5Exercises................................. 263 11 Algorithmic Stability 267 11.1Definitions.................................267 11.2Stability-basedgeneralizationguarantee................ 268 11.3Stabilityofkernel-basedregularizationalgorithms.......... 270 11.3.1 Application to regression algorithms: SVR and KRR . 274 11.3.2Applicationtoclassificationalgorithms:SVMs........ 276 11.3.3Discussion............................. 276 11.4Chapternotes...............................277 11.5Exercises................................. 277 12 Dimensionality Reduction 281 12.1PrincipalComponentAnalysis..................... 282 ix 12.2KernelPrincipalComponentAnalysis(KPCA)............ 283 12.3KPCAandmanifoldlearning......................285 12.3.1Isomap.............................. 285 12.3.2Laplacianeigenmaps....................... 286 12.3.3Locallylinearembedding(LLE)................ 287 12.4Johnson-Lindenstrausslemma...................... 288 12.5Chapternotes...............................290 12.6Exercises................................. 290 13 Learning Automata and Languages 293 13.1Introduction................................293 13.2Finiteautomata............................. 294 13.3Efficientexactlearning.......................... 295 13.3.1Passivelearning......................... 296 13.3.2Learningwithqueries...................... 297 13.3.3Learningautomatawithqueries................ 298 13.4Identificationinthelimit.......................
Recommended publications
  • Designing Algorithms for Machine Learning and Data Mining
    Designing Algorithms for Machine Learning and Data Mining Antoine Cornuéjols and Christel Vrain Abstract Designing Machine Learning algorithms implies to answer three main questions: First, what is the space H of hypotheses or models of the data that the algorithm considers? Second, what is the inductive criterion used to assess the merit of a hypothesis given the data? Third, given the space H and the inductive crite- rion, how is the exploration of H carried on in order to find a as good as possible hypothesis?Anylearningalgorithmcanbeanalyzedalongthesethreequestions.This chapter focusses primarily on unsupervised learning, on one hand, and supervised learning, on the other hand. For each, the foremost problems are described as well as the main existing approaches. In particular, the interplay between the structure that can be endowed over the hypothesis space and the optimisation techniques that can in consequence be used is underlined. We cover especially the major existing methods for clustering: prototype-based, generative-based, density-based, spectral based, hierarchical, and conceptual and visit the validation techniques available. For supervised learning, the generative and discriminative approaches are contrasted and awidevarietyoflinearmethodsinwhichweincludetheSupportVectorMachines and Boosting are presented. Multi-Layer neural networks and deep learning methods are discussed. Some additional methods are illustrated, and we describe other learn- ing problems including semi-supervised learning, active learning, online learning, transfer learning, learning to rank, learning recommendations, and identifying causal relationships. We conclude this survey by suggesting new directions for research. 1 Introduction Machine Learning is the science of, on one hand, discovering the fundamental laws that govern the act of learning and, on the other hand, designing machines that learn from experiences, in the same way as physics is both the science of uncovering the A.
    [Show full text]
  • Mistake Bounds for Binary Matrix Completion
    Mistake Bounds for Binary Matrix Completion Mark Herbster Stephen Pasteris University College London University College London Department of Computer Science Department of Computer Science London WC1E 6BT, UK London WC1E 6BT, UK [email protected] [email protected] Massimiliano Pontil Istituto Italiano di Tecnologia 16163 Genoa, Italy and University College London Department of Computer Science London WC1E 6BT, UK [email protected] Abstract We study the problem of completing a binary matrix in an online learning setting. On each trial we predict a matrix entry and then receive the true entry. We propose a Matrix Exponentiated Gradient algorithm [1] to solve this problem. We provide a mistake bound for the algorithm, which scales with the margin complexity [2, 3] of the underlying matrix. The bound suggests an interpretation where each row of the matrix is a prediction task over a finite set of objects, the columns. Using this we show that the algorithm makes a number of mistakes which is comparable up to a logarithmic factor to the number of mistakes made by the Kernel Perceptron with an optimal kernel in hindsight. We discuss applications of the algorithm to predicting as well as the best biclustering and to the problem of predicting the labeling of a graph without knowing the graph in advance. 1 Introduction We consider the problem of predicting online the entries in an m × n binary matrix U. We formulate this as the following game: nature queries an entry (i1; j1); the learner predicts y^1 2 {−1; 1g as the matrix entry; nature presents a label y1 = Ui1;j1 ; nature queries the entry (i2; j2); the learner predicts y^2; and so forth.
    [Show full text]
  • Kernel Methods and Factorization for Image and Video Analysis
    KERNEL METHODS AND FACTORIZATION FOR IMAGE AND VIDEO ANALYSIS Thesis submitted in partial fulfillment of the requirements for the degree of Master of Science (by Research) in Computer Science by Ranjeeth Dasineni 200507017 ranjith [email protected] International Institute of Information Technology Hyderabad, India November 2007 INTERNATIONAL INSTITUTE OF INFORMATION TECHNOLOGY Hyderabad, India CERTIFICATE It is certified that the work contained in this thesis, titled \Kernel Methods and Factorization for Image and Video Analysis" by Ranjeeth Dasineni, has been carried out under my supervision and is not submitted elsewhere for a degree. Date Advisor: Dr. C. V. Jawahar Copyright c Ranjeeth Dasineni, 2007 All Rights Reserved To IIIT Hyderabad, where I learnt all that I know of Computers and much of what I know of Life Acknowledgments I would like to thank Dr. C. V. Jawahar for introducing me to the fields of computer vision and machine learning. I gratefully acknowledge the motivation, technical and philosophical guidance that he has given me throughout my undergraduate and graduate education. His knowledge and valuable suggestions provided the foundation for the work presented in this thesis. I thank Dr P. J. Narayanan for providing an excellent research environment at CVIT, IIIT Hyderabad. His advice on research methodology helped me in facing the challenges of research. I am grateful to the GE Foundation and CVIT for funding my graduate education at IIIT Hyderabad. I am also grateful to fellow lab mates at CVIT and IIIT Hyderabad for their stimulating company during the past years. While working on this thesis, few researchers across the world lent their valuable time validate my work, check the correctness of my implementations, and provide critical suggestions.
    [Show full text]
  • COMS 4771 Perceptron and Kernelization
    COMS 4771 Perceptron and Kernelization Nakul Verma Last time… • Generative vs. Discriminative Classifiers • Nearest Neighbor (NN) classification • Optimality of k-NN • Coping with drawbacks of k-NN • Decision Trees • The notion of overfitting in machine learning A Closer Look Classification x O Knowing the boundary is enough for classification Linear Decision Boundary male data Height female data Weight Assume binary classification y= {-1,+1} (What happens in multi-class case?) Learning Linear Decision Boundaries g = decision boundary d=1 case: general: +1 if g(x) ≥ 0 f = linear classifier -1 if g(x) < 0 # of parameters to learn in Rd? Dealing with w0 = . bias homogeneous “lifting” The Linear Classifier popular nonlinearities non-linear threshold Σi wi xi+w0 linear sigmoid 1 x1 x2 … xd bias A basic computational unit in a neuron Can Be Combined to Make a Network … Amazing fact: Can approximate any smooth function! … x x … 1 x2 3 xd An artificial neural network How to Learn the Weights? Given labeled training data (bias included): Want: , which minimizes the training error, i.e. How do we minimize? • Cannot use the standard technique (take derivate and examine the stationary points). Why? Unfortunately: NP-hard to solve or even approximate! Finding Weights (Relaxed Assumptions) Can we approximate the weights if we make reasonable assumptions? What if the training data is linearly separable? Linear Separability Say there is a linear decision boundary which can perfectly separate the training data distance of the closest point to the boundary (margin γ ) Finding Weights Given: labeled training data S = Want to determine: is there a which satisfies (for all i) i.e., is the training data linearly separable? Since there are d+1 variables and |S| constraints, it is possible to solve efficiently it via a (constraint) optimization program.
    [Show full text]
  • Kernel Methods for Pattern Analysis
    This page intentionally left blank Kernel Methods for Pattern Analysis Pattern Analysis is the process of finding general relations in a set of data, and forms the core of many disciplines, from neural networks to so-called syn- tactical pattern recognition, from statistical pattern recognition to machine learning and data mining. Applications of pattern analysis range from bioin- formatics to document retrieval. The kernel methodology described here provides a powerful and unified framework for all of these disciplines, motivating algorithms that can act on general types of data (e.g. strings, vectors, text, etc.) and look for general types of relations (e.g. rankings, classifications, regressions, clusters, etc.). This book fulfils two major roles. Firstly it provides practitioners with a large toolkit of algorithms, kernels and solutions ready to be implemented, many given as Matlab code suitable for many pattern analysis tasks in fields such as bioinformatics, text analysis, and image analysis. Secondly it furnishes students and researchers with an easy introduction to the rapidly expanding field of kernel-based pattern analysis, demonstrating with examples how to handcraft an algorithm or a kernel for a new specific application, while covering the required conceptual and mathematical tools necessary to do so. The book is in three parts. The first provides the conceptual foundations of the field, both by giving an extended introductory example and by cov- ering the main theoretical underpinnings of the approach. The second part contains a number of kernel-based algorithms, from the simplest to sophis- ticated systems such as kernel partial least squares, canonical correlation analysis, support vector machines, principal components analysis, etc.
    [Show full text]
  • Fast Kernel Classifiers with Online and Active Learning
    Journal of Machine Learning Research (2005) to appear Submitted 3/05; Published 10?/05 Fast Kernel Classifiers with Online and Active Learning Antoine Bordes [email protected] NEC Laboratories America, 4 Independence Way, Princeton, NJ08540, USA, and Ecole Sup´erieure de Physique et Chimie Industrielles, 10 rue Vauquelin, 75231 Paris CEDEX 05, France. Seyda Ertekin [email protected] The Pennsylvania State University, University Park, PA 16802, USA Jason Weston [email protected] NEC Laboratories America, 4 Independence Way, Princeton, NJ08540, USA. L´eon Bottou [email protected] NEC Laboratories America, 4 Independence Way, Princeton, NJ08540, USA. Editor: Nello Cristianini Abstract Very high dimensional learning systems become theoretically possible when training ex- amples are abundant. The computing cost then becomes the limiting factor. Any efficient learning algorithm should at least pay a brief look at each example. But should all examples be given equal attention? This contribution proposes an empirical answer. We first presents an online SVM algorithm based on this premise. LASVM yields competitive misclassification rates after a single pass over the training examples, outspeeding state-of-the-art SVM solvers. Then we show how active example selection can yield faster training, higher accuracies, and simpler models, using only a fraction of the training example labels. 1. Introduction Electronic computers have vastly enhanced our ability to compute complicated statistical models. Both theory and practice have adapted to take into account the essential com- promise between the number of examples and the model capacity (Vapnik, 1998). Cheap, pervasive and networked computers are now enhancing our ability to collect observations to an even greater extent.
    [Show full text]
  • The Teaching Dimension of Kernel Perceptron
    The Teaching Dimension of Kernel Perceptron Akash Kumar Hanqi Zhang Adish Singla Yuxin Chen MPI-SWS University of Chicago MPI-SWS University of Chicago Abstract et al.(2020)). One of the most studied scenarios is the case of teaching a version-space learner (Goldman & Kearns, 1995; Anthony et al., 1995; Zilles et al., Algorithmic machine teaching has been stud- 2008; Doliwa et al., 2014; Chen et al., 2018; Mansouri ied under the linear setting where exact teach- et al., 2019; Kirkpatrick et al., 2019). Upon receiving ing is possible. However, little is known for a sequence of training examples from the teacher, a teaching nonlinear learners. Here, we estab- version-space learner maintains a set of hypotheses that lish the sample complexity of teaching, aka are consistent with the training examples, and outputs teaching dimension, for kernelized perceptrons a random hypothesis from this set. for different families of feature maps. As a warm-up, we show that the teaching complex- As a canonical example, consider teaching a 1- ity is Θ(d) for the exact teaching of linear dimensional binary threshold function fθ∗ (x) = d k 1 perceptrons in R , and Θ(d ) for kernel per- x θ∗ for x [0; 1]. For a learner with a finite (or f − g 2 i ceptron with a polynomial kernel of order k. countable infinite) version space, e.g., θ i=0;:::;n 2 f n g Furthermore, under certain smooth assump- where n Z+ (see Fig. 1a), a smallest training set i 2 i+1 i i+1 tions on the data distribution, we establish a is ; 0 ; ; 1 where θ∗ < ; thus the f n n g n ≤ n rigorous bound on the complexity for approxi- teaching dimension is 2.
    [Show full text]
  • Online Passive-Aggressive Algorithms on a Budget
    Online Passive-Aggressive Algorithms on a Budget Zhuang Wang Slobodan Vucetic Dept. of Computer and Information Sciences Dept. of Computer and Information Sciences Temple University, USA Temple University, USA [email protected] [email protected] Abstract 1 INTRODUCTION The introduction of Support Vector Machines (Cortes In this paper a kernel-based online learning and Vapnik, 1995) generated signi¯cant interest in ap- algorithm, which has both constant space plying the kernel methods for online learning. A large and update time, is proposed. The approach number of online algorithms (e.g. perceptron (Rosen- is based on the popular online Passive- blatt, 1958) and PA (Crammer et al., 2006)) can be Aggressive (PA) algorithm. When used in easily kernelized. The online kernel algorithms have conjunction with kernel function, the num- been popular because they are simple, can learn non- ber of support vectors in PA grows with- linear mappings, and could achieve state-of-the-art ac- out bounds when learning from noisy data curacies. Perhaps surprisingly, online kernel classi¯ers streams. This implies unlimited memory can place a heavy burden on computational resources. and ever increasing model update and pre- The main reason is that the number of support vectors diction time. To address this issue, the pro- that need to be stored as part of the prediction model posed budgeted PA algorithm maintains only grows without limit as the algorithm progresses. In ad- a ¯xed number of support vectors. By intro- dition to the potential of exceeding the physical mem- ducing an additional constraint to the origi- ory, this property also implies an unlimited growth in nal PA optimization problem, a closed-form model update and perdition time.
    [Show full text]
  • Mistake Bounds for Binary Matrix Completion
    Mistake Bounds for Binary Matrix Completion Mark Herbster Stephen Pasteris University College London University College London Department of Computer Science Department of Computer Science London WC1E 6BT, UK London WC1E 6BT, UK [email protected] [email protected] Massimiliano Pontil Istituto Italiano di Tecnologia 16163 Genoa, Italy and University College London Department of Computer Science London WC1E 6BT, UK [email protected] Abstract We study the problem of completing a binary matrix in an online learning setting. On each trial we predict a matrix entry and then receive the true entry. We propose a Matrix Exponentiated Gradient algorithm [1] to solve this problem. We provide a mistake bound for the algorithm, which scales with the margin complexity [2, 3] of the underlying matrix. The bound suggests an interpretation where each row of the matrix is a prediction task over a finite set of objects, the columns. Using this we show that the algorithm makes a number of mistakes which is comparable up to a logarithmic factor to the number of mistakes made by the Kernel Perceptron with an optimal kernel in hindsight. We discuss applications of the algorithm to predicting as well as the best biclustering and to the problem of predicting the labeling of a graph without knowing the graph in advance. 1 Introduction We consider the problem of predicting online the entries in an m × n binary matrix U. We formulate this as the following game: nature queries an entry (i1; j1); the learner predicts y^1 2 {−1; 1g as the matrix entry; nature presents a label y1 = Ui1;j1 ; nature queries the entry (i2; j2); the learner predicts y^2; and so forth.
    [Show full text]
  • Output Neuron
    COMPUTATIONAL INTELLIGENCE (CS) (INTRODUCTION TO MACHINE LEARNING) SS16 Lecture 4: • Neural Networks Perceptron Feedforward Neural Network Backpropagation algorithM HuMan-level intelligence (strong AI) • SF exaMple: Marvin the Paranoid Android • www.youtube.coM/watch?v=z9Yp6D1ASnI HuMan-level intelligence (strong AI) • Robots that exhibit coMplex behaviour, as skilful and flexible as huMans, capable of: • CoMMunicating in natural language • Reasoning • Representing knowledge • Planning • Learning • Consciousness • Self-awareness • EMotions.. • How to achieve that? Any idea? NEURAL NETWORKS MOTIVATION The brain • Enables us to do soMe reMarkable things such as: • learning froM experience • instant MeMory (experiences) search • face recognition (~100Ms) • adaptation to a new situation • being creative.. • The brain is a biological neural network (BNN): • extreMely coMplex and highly parallel systeM • consisting of 100 billions of neurons coMMunicating via 100 trillions of synapses (each neuron connected to 10000 other neurons on average) • MiMicking the brain could be the way to build an (huMan level) intelligent systeM! Artificial Neural Networks (ANN) • ANN are coMputational Models that Model the way brain works • Motivated and inspired by BNN, but still only siMple iMitation of BNN! • ANN MiMic huMan learning by changing the strength of siMulated neural connections on the basis of experience • What are the different types of ANNs? • What level of details is required? • How do we iMpleMent and siMulate theM? ARTIFICIAL NEURAL NETWORKS
    [Show full text]
  • A Review of Learning Planning Action Models Ankuj Arora, Humbert Fiorino, Damien Pellier, Marc Etivier, Sylvie Pesty
    A Review of Learning Planning Action Models Ankuj Arora, Humbert Fiorino, Damien Pellier, Marc Etivier, Sylvie Pesty To cite this version: Ankuj Arora, Humbert Fiorino, Damien Pellier, Marc Etivier, Sylvie Pesty. A Review of Learning Planning Action Models. Knowledge Engineering Review, Cambridge University Press (CUP), 2018, 33, 10.1017/S0269888918000188. hal-02010536 HAL Id: hal-02010536 https://hal.archives-ouvertes.fr/hal-02010536 Submitted on 7 Feb 2019 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. The Knowledge Engineering Review, Vol. 00:0, 1{24. c 2004, Cambridge University Press DOI: 10.1017/S000000000000000 Printed in the United Kingdom A Review of Learning Planning Action Models ANKUJ ARORA* HUMBERT FIORINO* DAMIEN PELLIER* MARC METIVIER**´ SYLVIE PESTY* *Univ. Grenoble Alpes, CNRS, Grenoble INP, LIG, 38000 Grenoble, France E-mail: fi[email protected] **Paris Descartes University, LIPADE, 45 rue des Saints-P´res75006 Paris, France E-mail: [email protected] Abstract Automated planning has been a continuous field of study since the 1960s, since the notion of accomplishing a task using an ordered set of actions resonates with almost every known activity domain.
    [Show full text]
  • An Introduction to Weighted Automata in Machine Learning
    An Introduction to Weighted Automata in Machine Learning Awni Hannun∗ August 17, 2021 Abstract The goal of this work is to introduce the reader to weighted finite-state automata and their application to machine learning. I begin by motivating the use of automata in machine learning and proceed with an introduction to acceptors, transducers, and their associated properties. Many of the core operations of weighted automata are then described in detail. Following this, the work moves closer to the research frontier by explaining automatic differentiation and its use with weighted automata. The last section presents several extended examples to gain deeper familiarity with weighted automata, their operations, and their use in machine learning. ∗Send correspondence to [email protected] 1 CONTENTS 2 Contents 1 Introduction3 1.1 Monolithic or Modular.........................3 1.2 Advantages of Differentiable Automata................5 1.3 Comparison to Tensors.........................6 1.4 History and Bibliographic Notes...................7 2 Acceptors and Transducers9 2.1 Automata................................9 2.2 Acceptors................................ 10 2.3 Transducers............................... 14 3 Basic Operations 17 3.1 Closure................................. 17 3.2 Union.................................. 19 3.3 Concatenation............................. 21 3.4 Summary................................ 23 4 Advanced Operations 25 4.1 Intersect................................. 25 4.2 Compose................................ 30
    [Show full text]