Analytic Center Cutting Plane Method for Multiple Kernel Learning

Total Page:16

File Type:pdf, Size:1020Kb

Analytic Center Cutting Plane Method for Multiple Kernel Learning Ann Math Artif Intell DOI 10.1007/s10472-013-9331-4 Analytic center cutting plane method for multiple kernel learning Sharon Wulff · Cheng Soon Ong © Springer Science+Business Media Dordrecht 2013 Abstract Multiple Kernel Learning (MKL) is a popular generalization of kernel methods which allows the practitioner to optimize over convex combinations of kernels. We observe that many recent MKL solutions can be cast in the framework of oracle based optimization, and show that they vary in terms of query point generation. The popularity of such methods is because the oracle can fortuitously be implemented as a support vector machine. Motivated by the success of centering approaches in interior point methods, we propose a new approach to optimize the MKL objective based on the analytic center cutting plane method (accpm). Our experimental results show that accpm outperforms state of the art in terms of rate of convergence and robustness. Further analysis sheds some light as to why MKL may not always improve classification accuracy over naive solutions. Keywords Multiple kernel learning · accpm · Oracle methods · Machine learning Mathematics Subject Classification (2010) 68T05 1 Introduction Kernel methods, for example the support vector machine (SVM), are a class of algorithms that consider only the similarity between examples [1]. A kernel function S. Wulff Department of Computer Science, ETH, Zürich, Switzerland e-mail: [email protected] C. S. Ong (B) NICTA, The University of Melbourne, Melbourne, Australia e-mail: [email protected] S. Wulff, C.S. Ong k implicitly maps examples x to a feature space given by a feature map via the identity k(xi, x j) = (xi), (x j) . It is often unclear what the most suitable kernel for the task at hand is, and hence the user may wish to combine several possible kernels. One problem with simply adding kernels is that using uniform weights is possibly not optimal. An extreme example is the case that one kernel is not correlated with the labels at all, in such cases giving it positive weight just adds noise [2]. Multiple kernel learning (MKL) is a way of optimizing kernel weights while training the SVM. In addition to leading to good classification accuracies, MKL can also be useful for identifying relevant and meaningful features [2–5]. MKL finds a convex combination of kernels [6, 7], that is to find a classifier p fw,b,β (x, y) = βk wk,k(x) + b k=1 where β are the kernel weights corresponding to the p kernels, and w, b are the SVM parameters. The MKL problem was first formulated as a semidefinite programming SDP problem [6]. One can exploit the known structure of the MKL problem to speed up the optimization, for example using an SMO-like approach [8]. However, this requires a full reimplementation of the solver. MKL has also been recently shown to be equivalent to group LASSO [9]. Recently, leveraging on the existence of efficient software for solving the SVM optimization problem, a semi-infinite linear programming (SILP) approach was developed in [7]. Their solution is based on the concept of cutting planes. Cutting planes methods alternate between choosing query points and calling an oracle. Given a query point, the oracle returns halfspaces to be included in the current set of constraints, forming the feasible set. In the context of MKL, the oracle is an SVM solver and the query points are kernel weights. One criticism of the SILP is that it requires many cutting planes (and hence calls to the SVM) before convergence. This gave rise to a subgradient based approach [10] and a bundle method [11]. Our contributions in this paper are as follows. We review MKL optimization in an oracle based optimization framework and demonstrate that they are essentially different ways of generating query points. We propose the use of the analytic center as a query point since it would in expectation halve the hypothesis space. We conduct experiments comparing the performance of several MKL solutions on UCI data. We show that our more“regularized” approach often requires fewer iterations, and is more robust to variations in data. The experimental results are followed by a discussion about the correlation between the MKL objective and test accuracy. 2 Oracle based methods Oracle based methods are widely used for solving integer programming problems. Here we focus on using oracle based methods for solving convex optimization problems [12]. The goal of oracle based algorithms is to find a point in a convex set Z, or to determine if the set is empty (refer to Algorithm 1 for a pseudocode description). In an optimization problem, Z is the set of ε-suboptimal points. The method does not assume any direct access to the description of Z,suchasthe objective and constraint functions, except through an oracle. Instead the method generates a query point q (Section 2.2) which upon satisfying q ∈ Z is passed to the ACCPM for multiple kernel learning oracle (Section 2.1). The oracle returns a hyperplane which separates q from the set Z. This hyperplane is called a “cut” since it eliminates a halfspace from our search, which is the reason oracle based methods are also known as cutting plane methods. 2.1 Oracles and cuts For a convex optimization problem with m constraints, minz f0(z) (1) s.t. fi(z) 0, i = 1,...,m where f0,..., fm are convex and differentiable, the target set Z is the optimal (or ε-optimal) set. Given a query point q, the oracle first checks for feasibility. If q is not feasible, then we choose one of the violated constraints f j(q)>0 and form a cut f j(q) +∇f j(q) (z − q) 0 (2) This cut (2) is called a feasibility cut for the problem (1) since it cuts away a halfspace of points known to be infeasible (since they violate the jth constraint). If q is feasible, we construct the cutting plane ∇ f0(q) (z − q) 0, (3) which is called the objective cut for (1). This cuts out the halfspace z |∇f0(q) (z − q)>0 since all such points have an objective value larger than f0(q) and hence cannot be optimal. If q is feasible and ∇ f0(q) = 0 then q is optimal. In general, for non- differentiable problems, the gradients ∇ f j(z) can be replaced by subgradients. Algorithm 1 Cutting plane algorithm for optimization Require: an initial polyhedron P0 containing Z. t = 0 repeat (t+1) Generate a query point q in Pt Query the oracle at q(t+1), Oracle returns a cutting plane at+1z b t+1. Update the constraints: P = P ∩{ | } t+1 t z at+1z b t+1 . t = t + 1 until convergence or Pt+1 =∅ 2.2 Generating query points In principle, we would like the query point q(t+1) corresponding to the current polyhedron Pt (containing the optimal set Z) to be generated such that the resulting (t+1) cut reduces the size of Pt+1 as much as possible. When querying the oracle with q , we do not know in which direction the generated cut will exclude, but we do know that q(t+1) will be in the excluded halfspace. One approach is to greedily use the S. Wulff, C.S. Ong vertex of the current polytope which minimizes the objective, leading to the following method. 2.2.1 Method of Kelley–Cheney–Goldstein For the optimization problem (1), the piecewise linear function (t) f (z) = max f0(zi) +∇f0(zi) (z − zi) it (t+1) is a lower approximation to f0(z). The next query point q is found by solving min θ s.t.θ f0(qi) +∇f0(qi) (z − qi), ∀i t (4) Atz b t, where At, b t are the set of existing cutting planes which define the current polyhe- dron Pt. In the rest of the paper we refer to the above method as the Kelley–Cheney– Goldstein method (KCG). ∇ f0(qi) Using instead of ∇ f0(qi) in (4), results in finding the center of the largest ∇ f0(qi) sphere. This variant of (4) is called the Chebyshev center method. This modification, where the gradients are scaled to unit length, has significantly better convergence properties [12]. This already shows the power of centering, which is exploited by the following method. 2.2.2 Analytic center cutting plane method The analytic center is a concept which has been popularized by interior point ∈ R = − methods. Given a constraint ai z b i, define the slack si as si b i ai z,that is, si is a measure of how close or how far the current solution is from the constraint. An interior point of the feasible set is a point for which all the slacks are strictly positive. The analytic center is defined as the unique maximizer of the function t t f (s) = si where s ∈ R is the vector of slacks of the current set of constraints i=1 { , = ,..., } ai z b i i 1 t . The geometrical interpretation of the analytic center is the point that maximizes the product of distances to all of the faces of the polytope. Maximizing the product of the slacks (e.g. instead of sum), ensures that every slack is strictly positive. We can rewrite the analytic center as t t ( ) = = ( − ) argmax f s argmax si argmax log b i ai z (5) z z z i=1 i=1 This function is also known as the logarithmic barrier, and its unique maximizer can be efficiently found using Newton iterations [12]. Going back to the cutting planes framework, computing a point which is as far as possible from the border of the feasible set, ensures that in every iteration the resulting cut yields a substantial reduction of the size of the set.
Recommended publications
  • The Shogun Machine Learning Toolbox
    The Shogun Machine Learning Toolbox Heiko Strathmann, Gatsby Unit, UCL London Open Machine Learning Workshop, MSR, NY August 22, 2014 A bit about Shogun I Open-Source tools for ML problems I Started 1999 by SÖren Sonnenburg & GUNnar Rätsch, made public in 2004 I Currently 8 core-developers + 20 regular contributors I Purely open-source community driven I In Google Summer of Code since 2010 (29 projects!) Ohloh - Summary Ohloh - Code Supervised Learning Given: x y n , want: y ∗ x ∗ I f( i ; i )gi=1 j I Classication: y discrete I Support Vector Machine I Gaussian Processes I Logistic Regression I Decision Trees I Nearest Neighbours I Naive Bayes I Regression: y continuous I Gaussian Processes I Support Vector Regression I (Kernel) Ridge Regression I (Group) LASSO Unsupervised Learning Given: x n , want notion of p x I f i gi=1 ( ) I Clustering: I K-Means I (Gaussian) Mixture Models I Hierarchical clustering I Latent Models I (K) PCA I Latent Discriminant Analysis I Independent Component Analysis I Dimension reduction I (K) Locally Linear Embeddings I Many more... And many more I Multiple Kernel Learning I Structured Output I Metric Learning I Variational Inference I Kernel hypothesis testing I Deep Learning (whooo!) I ... I Bindings to: LibLinear, VowpalWabbit, etc.. http://www.shogun-toolbox.org/page/documentation/ notebook Some Large-Scale Applications I Splice Site prediction: 50m examples of 200m dimensions I Face recognition: 20k examples of 750k dimensions ML in Practice I Modular data represetation I Dense, Sparse, Strings, Streams, ... I Multiple types: 8-128 bit word size I Preprocessing tools I Evaluation I Cross-Validation I Accuracy, ROC, MSE, ..
    [Show full text]
  • SWIG and Ruby
    SWIG and Ruby David Grayson Las Vegas Ruby Meetup 2014-09-10 SWIG ● SWIG stands for: Simplified Wrapper and Interface Generator ● SWIG helps you access C or C++ code from 22 different languages, including Ruby SWIG inputs and outputs Ruby C extension SWIG interface file (.i) source (.c or .cxx) Simple C++ example libdavid.h: libdavid.i #include <stdio.h> %module "david" class David %{ { #include <libdavid.h> public: %} David(int x) { class David this->x = x; { } public: David(int x); void announce() void announce(); { int x; }; printf("David %d\n", x); } int x; }; Compiling Simple C++ example extconf.rb require 'mkmf' system('swig -c++ -ruby libdavid.i') or abort create_makefile('david') Commands to run: $ ruby extconf.rb # create libdavid_wrap.cxx and Makefile $ make # compile david.so $ irb -r./david # try it out irb(main):001:0> d = David::David.new(4) => #<David::David:0x007f40090a5280 @__swigtype__="_p_David"> irb(main):002:0> d.announce David 4 => nil (This example worked for me with SWIG 3.0.2 and Ruby 2.1.2.) That example was pretty simple ● All code was in a .h file ● No external libraries ● Simple data types ● No consideration of deployment ...but SWIG has tons of features C: C++: ● All ISO C datatypes ● All C++ datatypes ● Global functions ● References ● Global variables, constants ● Pointers to members ● Structures and unions ● Classes ● Pointers ● (Multiple) inheritance ● (Multidimensional) arrays ● Overloaded functions ● Pointers to functions ● Overloaded methods ● Variable length arguments ● Overloaded operators ● Typedefs ● Static members ● Enums ● Namespaces ● Templates ● Nested classes ... SWIG Typemaps ● Define custom ways to map between scripting- language types and C++ types. ● Can be used to add and remove parameters from of exposed functions.
    [Show full text]
  • PHP Beyond the Web Shell Scripts, Desktop Software, System Daemons and More
    PHP Beyond the web Shell scripts, desktop software, system daemons and more Rob Aley This book is for sale at http://leanpub.com/php This version was published on 2013-11-25 This is a Leanpub book. Leanpub empowers authors and publishers with the Lean Publishing process. Lean Publishing is the act of publishing an in-progress ebook using lightweight tools and many iterations to get reader feedback, pivot until you have the right book and build traction once you do. ©2012 - 2013 Rob Aley Tweet This Book! Please help Rob Aley by spreading the word about this book on Twitter! The suggested hashtag for this book is #phpbeyondtheweb. Find out what other people are saying about the book by clicking on this link to search for this hashtag on Twitter: https://twitter.com/search?q=#phpbeyondtheweb Contents Welcome ............................................ i About the author ...................................... i Acknowledgements ..................................... ii 1 Introduction ........................................ 1 1.1 “Use PHP? We’re not building a website, you know!”. ............... 1 1.2 Are you new to PHP? ................................. 2 1.3 Reader prerequisites. Or, what this book isn’t .................... 3 1.4 An important note for Windows and Mac users ................... 3 1.5 About the sample code ................................ 4 1.6 External resources ................................... 4 1.7 Book formats/versions available, and access to updates ............... 5 1.8 English. The Real English. .............................. 5 2 Getting away from the Web - the basics ......................... 6 2.1 PHP without a web server .............................. 6 2.2 PHP versions - what’s yours? ............................. 7 2.3 A few good reasons NOT to do it in PHP ...................... 8 2.4 Thinking about security ...............................
    [Show full text]
  • Python and Epics: Channel Access Interface to Python
    Python and Epics: Channel Access Interface to Python Matthew Newville Consortium for Advanced Radiation Sciences University of Chicago October 12, 2010 http://cars9.uchicago.edu/software/python/pyepics3/ Matthew Newville (CARS, Univ Chicago) Epics and Python October 12, 2010 Why Python? The Standard Answers Clean Syntax Easy to learn, remember, and read High Level Language No pointers, dynamic memory, automatic memory Cross Platform code portable to Unix, Windows, Mac. Object Oriented full object model, name spaces. Also: procedural! Extensible with C, C++, Fortran, Java, .NET Many Libraries GUIs, Databases, Web, Image Processing, Array math Free Both senses of the word. No, really: completely free. Matthew Newville (CARS, Univ Chicago) Epics and Python October 12, 2010 Why Python? The Real Answer Scientists use Python. Matthew Newville (CARS, Univ Chicago) Epics and Python October 12, 2010 All of these tools use the C implementation of Python. NOT Jython (Python in Java) or IronPython (Python in .NET): I am not talking about Jython. Why Do Scientists Use Python? Python is great. The tools are even better: numpy Fast arrays. matplotlib Excellent Plotting library scipy Numerical Algorithms (FFT, lapack, fitting, . ) f2py Wrapping Fortran for Python sage Symbolic math (ala Maple, Mathematica) GUI Choices Tk, wxWidgets, Qt, . Free Python is Free. All these tools are Free (BSD). Matthew Newville (CARS, Univ Chicago) Epics and Python October 12, 2010 Why Do Scientists Use Python? Python is great. The tools are even better: numpy Fast arrays. matplotlib Excellent Plotting library scipy Numerical Algorithms (FFT, lapack, fitting, . ) f2py Wrapping Fortran for Python sage Symbolic math (ala Maple, Mathematica) GUI Choices Tk, wxWidgets, Qt, .
    [Show full text]
  • Foreign Library Interface by Daniel Adler Dia Applications That Can Run on a Multitude of Plat- Forms
    30 CONTRIBUTED RESEARCH ARTICLES Foreign Library Interface by Daniel Adler dia applications that can run on a multitude of plat- forms. Abstract We present an improved Foreign Function Interface (FFI) for R to call arbitary na- tive functions without the need for C wrapper Foreign function interfaces code. Further we discuss a dynamic linkage framework for binding standard C libraries to FFIs provide the backbone of a language to inter- R across platforms using a universal type infor- face with foreign code. Depending on the design of mation format. The package rdyncall comprises this service, it can largely unburden developers from the framework and an initial repository of cross- writing additional wrapper code. In this section, we platform bindings for standard libraries such as compare the built-in R FFI with that provided by (legacy and modern) OpenGL, the family of SDL rdyncall. We use a simple example that sketches the libraries and Expat. The package enables system- different work flow paths for making an R binding to level programming using the R language; sam- a function from a foreign C library. ple applications are given in the article. We out- line the underlying automation tool-chain that extracts cross-platform bindings from C headers, FFI of base R making the repository extendable and open for Suppose that we wish to invoke the C function sqrt library developers. of the Standard C Math library. The function is de- clared as follows in C: Introduction double sqrt(double x); We present an improved Foreign Function Interface The .C function from the base R FFI offers a call (FFI) for R that significantly reduces the amount of gate to C code with very strict conversion rules, and C wrapper code needed to interface with C.
    [Show full text]
  • Dynamic Message-Oriented Middleware with Open Sound Control and Odot
    http://www.cnmat.berkeley.edu/publications/dynamic-message-oriented-middleware-open-sound-control-and-odot Dynamic Message-Oriented Middleware with Open Sound Control and Odot John MacCallum1, Rama Gottfried1, Ilya Rostovtsev1, Jean Bresson2, and Adrian Freed1 1Center for New Music and Audio Technologies, Department of Music, University of California, Berkeley, [email protected], [email protected], [email protected], [email protected] 2UMR STMS: IRCAM-CNRS-UPMC, Paris, [email protected] ABSTRACT coding, and the odot framework provides a set of tools for constructing such a layer in a dynamic and agile fashion. We present recent work on odot, a system that extends Open We begin with brief descriptions of Message-Oriented Mid- Sound Control and facilitates the rapid and dynamic con- dleware, OSC, and odot. We then discuss our ongoing work struction of Message-Oriented Middleware providing an in- to provide support for a variety of host and nested host envi- teroperability layer for communication between applications. ronments that can be made to communicate by passing OSC Unlike traditional middleware systems, odot, when embedded between them. Finally, we conclude by discussing a number in a host environment, provides a node where computation of examples and future work. can take place, allowing middleware to take shape dynami- cally as the needs of the system develop. 2. OPEN SOUND CONTROL AND ODOT 2.1 Open Sound Control (OSC) 1. INTRODUCTION Open Sound Control[1][2][3] is a popular encoding in the In the course of a complex design project we often encounter music and media/arts programming communities for moving the need to use multiple applications to satisfy a diverse set data between sensors and actuators, as well as processes and of requirements.
    [Show full text]
  • Programovacı Jazyky Pro Vy´Uku Programova´Nı Na
    MASARYKOVA UNIVERZITA }w¡¢£¤¥¦§¨ FAKULTA INFORMATIKY !"#$%&'()+,-./012345<yA| Programovacı´jazyky pro vy´uku programova´nı´na SSˇ DIPLOMOVA´ PRA´ CE Bc. Luka´sˇRy´dlo Brno, 2012 Prohla´sˇenı´ Prohlasˇuji, zˇe tato diplomova´pra´ce je my´m pu˚vodnı´m autorsky´m dı´lem, ktere´ jsem vypracoval samostatneˇ. Vsˇechny zdroje, prameny a literaturu, ktere´jsem prˇi vypracova´nı´pouzˇı´val nebo z nich cˇerpal, v pra´ci rˇa´dneˇcituji s uvedenı´m u´plne´ho odkazu na prˇı´slusˇny´zdroj. Vedoucı´pra´ce: doc. RNDr. Toma´sˇPitner, Ph.D. iii Podeˇkova´nı´ Ra´d bych podeˇkoval vedoucı´mu sve´pra´ce, doc. RNDr. Toma´sˇi Pitnerovi, Ph.D. za ochotu ve´st me´te´ma, nevsˇednı´vstrˇı´cnost a trpeˇlivost i konkre´tnı´tipy. v Abstrakt Pra´ce prˇina´sˇı´zhodnocenı´ru˚zny´ch programovacı´ch jazyku˚, metodik a prostrˇedı´ pro potrˇeby vy´uky na strˇednı´ch sˇkola´ch. V u´vodnı´kapitole jsou popsane´teoreticke´ koncepty, formy vy´uky, analy´za metodik v oblasti vy´uky programova´nı´, vhodnost jednotlivy´ch paradigmat. Druha´kapitola prˇina´sˇı´prˇehled za´kladnı´ch metod graficke´ho popisu algoritmu, jejich vhodnost a vyuzˇitelnost prˇi vy´uce. Trˇetı´kapitola zacˇı´na´na´vrhem metodiky hodnocenı´programovacı´ch jazyku˚pro potrˇeby vy´uky a jejich prˇehledem. Dalsˇı´ka- pitola hodnotı´pro zmeˇnu ru˚zna´vy´vojova´prostrˇedı´, at’uzˇpouzˇı´vana´v beˇzˇne´praxi nebo urcˇena´prˇı´mo pro vy´uku. Za´veˇr pra´ce je veˇnova´n vy´ukovy´m materia´lu˚m pro semina´rˇz programova´nı´na gymna´ziu v jazyce Java metodou objects first, resp.
    [Show full text]
  • SWIG-1.3 Documentation
    SWIG−1.3 Documentation SWIG−1.3 Documentation Table of Contents SWIG−1.3 Development Documentation..........................................................................................................................................1 Sections...................................................................................................................................................................................1 SWIG Core Documentation............................................................................................................................................1 Language Module Documentation..................................................................................................................................1 Developer Documentation...............................................................................................................................................1 Documentation that has not yet been updated.................................................................................................................2 1 Preface...............................................................................................................................................................................................3 1.1 Introduction.......................................................................................................................................................................3 1.2 Special Introduction for Version 1.3................................................................................................................................3
    [Show full text]
  • Checking Type Safety of Foreign Function Calls ∗
    Checking Type Safety of Foreign Function Calls ∗ Michael Furr Jeffrey S. Foster University of Maryland, College Park University of Maryland, College Park [email protected] [email protected] Abstract guages. Such interfaces are important for accessing system-wide We present a multi-lingual type inference system for checking type libraries and legacy components, but they are difficult to use cor- safety across a foreign function interface. The goal of our system is rectly, especially when there are mismatches between native and to prevent foreign function calls from introducing type and mem- foreign type systems, data representations, and run-time environ- ory safety violations into an otherwise safe language. Our system ments. In all of the FFIs we are aware of, there is little or no consis- targets OCaml’s FFI to C, which is relatively lightweight and illus- tency checking between foreign and native code [4, 8, 15, 16, 17]. trates some interesting challenges in multi-lingual type inference. As a consequence, adding an FFI to a safe language potentially The type language in our system embeds OCaml types in C types provides a rich source of operations that can violate safety in subtle and vice-versa, which allows us to track type information accu- and difficult-to-find ways. rately even through the foreign language, where the original types This paper presents a multi-lingual type inference system to are lost. Our system uses representational types that can model check type and garbage collection safety across foreign function multiple OCaml types, because C programs can observe that many calls.
    [Show full text]
  • The SHOGUN Machine Learning Toolbox
    Introduction Machine Learning The SHOGUN Machine Learning Toolbox The SHOGUN Machine Learning Toolbox (and its python interface) S¨orenSonnenburg1;2, Gunnar R¨atsch2,Sebastian Henschel2,Christian Widmer2,Jonas Behr2,Alexander Zien2,Fabio de Bona2,Alexander Binder1,Christian Gehl1, and Vojtech Franc3 1 Berlin Institute of Technology, Germany 2 Friedrich Miescher Laboratory, Max Planck Society, Germany 3 Center for Machine Perception, Czech Republic fml Introduction Machine Learning The SHOGUN Machine Learning Toolbox Outline 1 Introduction 2 Machine Learning 3 The SHOGUN Machine Learning Toolbox Introduction Machine Learning The SHOGUN Machine Learning Toolbox About me Who Am I? About Me 1997-2002 studied Computer Science 2002-2009 doing ML & Bioinformatics research at Fraunhofer Institute FIRST and Max Planck Society since 2002 2008 PhD: Machine Learning for Genomic Sequence Analysis 2009- Researcher at Berlin Institute of Technology Open Source Involvement Debian Developer http://www.debian.org Machine Learning OSS http://mloss.org Machine Learning Data http://mldata.org Main author of SHOGUN - this talk More about me http://sonnenburgs.de/soeren Introduction Machine Learning The SHOGUN Machine Learning Toolbox Machine Learning - Learning from Data What is Machine Learning and what can it do for you? What is ML? AIM: Learning from empirical data! Applications speech and handwriting recognition search engines, natural language processing medical diagnosis, bioinformatics, chemoinformatics detecting credit card fraud computer vision, object
    [Show full text]
  • Javascript Tools and Testing
    Tooling and Testing SWE 432, Fall 2019 Web Application Development Quiz Go to: b.socrative.com, Click student login Room name: SWE432 Student Name: Your G-number (Including the G) Reminder: Survey can only be completed if you are in class. If you are not in class and do it you will be referred directly to the honor code board, no questions asked, no warning. LaToza GMU SWE 432 Fall 2019 !2 Review: JSON: JavaScript Object Notation Open standard format for transmitting data objects. No functions, only key / value pairs Values may be other objects or arrays var profHacker = { var profHacker = { firstName: "Alyssa", firstName: "Alyssa", lastName: “P Hacker", lastName: “P Hacker", teaches: "SWE 432", teaches: "SWE 432", office: “ENGR 6409”, office: "ENGR 6409", fullName: function(){ fullName: { return this.firstName + " " + this.lastName; firstName: “Alyssa”, } lastName: “P Hacker”} }; }; Our Object JSON Object LaToza GMU SWE 432 Fall 2019 !3 Logistics • HW1 due next Monday before class LaToza GMU SWE 432 Fall 2019 !4 Today • Web Development Tools • What’s behavior driven development and why do we want it? • Some tools for testing web apps - focus on Jest LaToza GMU SWE 432 Fall 2019 !5 An (older) way to export modules • Prior to ES6, was no language support for exposing modules. • Instead did it with libraries (e.g., node) that handled exports • Works similarly: declare what functions / classes are publicly visible, import classes • Syntax: In the file exporting a function or class sum: module.exports = sum; In the file importing a function or class sum: const sum = require('./sum'); Where sum.js is the name of a file which defines sum.
    [Show full text]
  • The Shogun Machine Learning Toolbox
    The Shogun Machine Learning Toolbox [email protected] Europython 2014 July 24, 2014 Outline Overview Machine Learning Features Technical Features Community A bit about me I Heiko Strathmann - http://herrstrathmann.de/ I 2004-2008 - Jazz guitar I 2008-2013 - BSc in CS, MSc in ML I Phd in Neuroscience & Machine Learning, UCL I Kernels, Bayesian & MCMC, Bioinformatics, Open-Source I Involved in Shogun since 2010 A bit about Machine Learning I Science of patterns in information I For example for recognising I Frauds in aeroplane wings I Skin cancer I Abuse of bank accounts I ...or predicting I Treatment resistance of HIV I Brain activity I Products on Amazon/Spotify/Netix I Not limited to, but including I Statistics I Big Data & <place-buzzword> I Robot world domination A bit about Shogun I Open-Source tools for ML problems I Made public in 2004 I Currently 8 core-developers + 20 regular contributors I Originally academic background I In Google Summer of Code since 2010 (29 projects!) I Upcoming workshop: July 27, 28, c-base Ohloh - Summary Ohloh - Code Ohloh - Commits Outline Overview Machine Learning Features Technical Features Community Supervised Learning Given: x y n , want: y ∗ x ∗ I f( i ; i )gi=1 j I Classication: y discrete I Support Vector Machine I Gaussian Processes I Logistic Regression I Decision Trees I Nearest Neighbours I Naive Bayes I Regression: y continuous I Gaussian Processes I Support Vector Regression I (Kernel) Ridge Regression I (Group) LASSO Unsupervised Learning Given: x n , want notion of p x I f i gi=1 ( ) I Clustering: I K-Means I (Gaussian) Mixture Models I Hierarchical clustering I Latent Models I (K) PCA I Latent Discriminant Analysis I Independent Component Analysis I Dimension reduction I (K) Locally Linear Embeddings I Many more..
    [Show full text]