Probabilistic Machine Learning: Foundations and Frontiers

Total Page:16

File Type:pdf, Size:1020Kb

Probabilistic Machine Learning: Foundations and Frontiers Probabilistic Machine Learning: Foundations and Frontiers Zoubin Ghahramani1,2,3,4 1 University of Cambridge 2 Alan Turing Institute 3 Leverhulme Centre for the Future of Intelligence 4 Uber AI Labs [email protected] http://mlg.eng.cam.ac.uk/zoubin/ Sackler Forum, National Academy of Sciences Washington DC, 2017 Machine Learning Zoubin Ghahramani 2 / 53 Many Related Terms Statistical Modelling Artificial Intelligence Neural Networks Machine Learning Data Mining Data Analytics Deep Learning Pattern Recognition Data Science Zoubin Ghahramani 3 / 53 Many Related Fields Engineering Computer Science Statistics Machine Learning Computational Applied Mathematics Neuroscience Economics Cognitive Science Physics Zoubin Ghahramani 4 / 53 Many Many Applications Bioinformatics Computer Vision Robotics Scientific Data Analysis Natural Language Processing Machine Learning Information Retrieval Speech Recognition Recommender Systems Signal Processing Machine Translation Medical Informatics Targeted Advertising Finance Data Compression Zoubin Ghahramani 5 / 53 Machine Learning • Machine learning is an interdisciplinary field that develops both the mathematical foundations and practical applications of systems that learn from data. Main conferences and journals: NIPS, ICML, AISTATS, UAI, KDD, JMLR, IEEE TPAMI Zoubin Ghahramani 6 / 53 Canonical problems in machine learning Zoubin Ghahramani 7 / 53 Classification x x x o x xxx o x o o o x x o o x o • Task: predict discrete class label from input data • Applications: face recognition, image recognition, medical diagnosis… • Methods: Logistic Regression, Support Vector Machines (SVMs), Neural Networks, Random Forests, Gaussian Process Classifiers… Zoubin Ghahramani 8 / 53 Regression D y x • Task: predict continuous quantities from input data • Applications: financial forecasting, click-rate prediction, … • Methods: Linear Regression, Neural Networks, Gaussian Processes, … Zoubin Ghahramani 9 / 53 Clustering ) • Task: group data together so that similar points are in the same group • Applications: bioinformatics, astronomy, document modelling, network modelling, … • Methods: k-means, Gaussian mixtures, Dirichlet process mixtures, … Zoubin Ghahramani 10 / 53 Dimensionality Reduction 2 1.5 1 0.5 0 !0.5 !1 !1.5 1 !2 1 0.5 0.5 0 !0.5 !1 0 • Task: map high-dimensional data onto low dimensions while preserving relevant information • Applications: any where the raw data is high-dimensional • Methods: PCA, factor analysis, MDS, LLE, Isomap, GPLVM,… Zoubin Ghahramani 11 / 53 Semi-supervised Learning ✦ ❄ ✰ ✦ ✰ ✰ • Task: learn from both labelled and unlabelled data • Applications: any where labelling data is expensive, e.g. vision,speech… • Methods: probabilistic models, graph-based SSL, transductive SVMs… Zoubin Ghahramani 12 / 53 Computer Vision: Object, Face and Handwriting Recognition, Image Captioning Computer Games Autonomous Vehicles Neural networks and deep learning Zoubin Ghahramani 14 / 53 N EURAL NETWORKS y Neural networks (n) (n) N outputs Data: D = {(x , y )}n=1 =(X, y) Parameters θ are weights of neural net. weights Neural nets model p(y(n)|x(n), θ) as a nonlin- hidden units ear function of θ and x, e.g.: weights (n) (n) θ (n) p(y = 1|x , )=σ( θixi ) inputs !i x Multilayer neural networks model the overall function as a composition of functions (layers), e.g.: (n) (2) (1) (n) (n) y = θj σ( θji xi )+ǫ !j !i Usually trained to maximise likelihood (or penalised likelihood) using variants of stochastic gradient descent (SGD) optimisation. Zoubin Ghahramani 15 / 53 DP EE LEARNING Deep learning systems are neural network models similar to those popular in the ’80s and ’90s, with: ◮ some architectural and algorithmic innovations (e.g. many layers, ReLUs, dropout, LSTMs) ◮ vastly larger data sets (web-scale) ◮ vastly larger-scale compute resources (GPU, cloud) ◮ much better software tools (Theano, Torch, TensorFlow) ◮ vastly increased industry investment and media hype figure from http://www.andreykurenkov.com/ Zoubin Ghahramani 16 / 53 L IMITATIONS OF DEEP LEARNING Neural networks and deep learning systems give amazing performance on many benchmark tasks but they are generally: ◮ very data hungry (e.g. often millions of examples) ◮ very compute-intensive to train and deploy (cloud GPU resources) ◮ poor at representing uncertainty ◮ easily fooled by adversarial examples ◮ finicky to optimise: non-convex + choice of architecture, learning procedure, initialisation, etc, require expert knowledge and experimentation ◮ uninterpretable black-boxes, lacking in trasparency, difficult to trust Zoubin Ghahramani 17 / 53 Beyond deep learning Zoubin Ghahramani 18 / 53 M ACHINE LEARNING AS PROBABILISTIC MODELLING ◮ A model describes data that one could observe from a system ◮ If we use the mathematics of probability theory to express all forms of uncertainty and noise associated with our model... ◮ ...then inverse probability (i.e. Bayes rule) allows us to infer unknown quantities, adapt our models, make predictions and learn from data. Zoubin Ghahramani 19 / 53 BESAY RULE P(hypothesis)P(data|hypothesis) P(hypothesis|data)= h P(h)P(data|h) " ◮ Bayes rule tells us how to do inference about hypotheses (uncertain quantities) from data (measured quantities). ◮ Learning and prediction can be seen as forms of inference. Reverend Thomas Bayes (1702-1761) Zoubin Ghahramani 20 / 53 O NE SLIDE ON BAYESIAN MACHINE LEARNING Everything follows from two simple rules: Sum rule: P(x)= y P(x, y) Product rule: P(x, y)=P"(x)P(y|x) Learning: P(D|θ, m)P(θ|m) P(D|θ, m) likelihood of parameters θ in model m P(θ|D, m) = P(θ|m) prior probability of θ P(D|m) P(θ|D, m) posterior of θ given data D Prediction: P(x|D, m)= P(x|θ, D, m)P(θ|D, m)dθ # Model Comparison: P(D|m)P(m) P(m|D)= P(D) Zoubin Ghahramani 21 / 53 W HY SHOULD WE CARE? Calibrated model and prediction uncertainty: getting systems that know when they don’t know. Automatic model complexity control and structure learning (Bayesian Occam’s Razor) Zoubin Ghahramani 22 / 53 WTDOHA I MEAN BY BEING BAYESIAN? Let’s return to the example of neural networks / deep learning: Dealing with all sources of parameter uncertainty Also potentially dealing with structure uncertainty y Feedforward neural nets model p y(n) x(n), θ outputs ( | ) weights Parameters θ are weights of neural net. hidden Structure is the choice of architecture, units number of hidden units and layers, choice of weights activation functions, etc. inputs x Zoubin Ghahramani 23 / 53 When do we need probabilities? Zoubin Ghahramani 25 / 53 W HEN IS THE PROBABILISTIC APPROACH ESSENTIAL? Many aspects of learning and intelligence depend crucially on the careful probabilistic representation of uncertainty: ◮ Forecasting ◮ Decision making ◮ Learning from limited, noisy, and missing data ◮ Learning complex personalised models ◮ Data compression ◮ Automating scientific modelling, discovery, and experiment design Zoubin Ghahramani 26 / 53 Automating model discovery: The automatic statistician Zoubin Ghahramani 28 / 53 T HE AUTOMATIC STATISTICIAN Language of models Translation Data Search Model Prediction Report Evaluation Checking Problem: Data are now ubiquitous; there is great value from understanding this data, building models and making predictions... however, there aren’t enough data scientists, statisticians, and machine learning experts. Zoubin Ghahramani 29 / 53 T HE AUTOMATIC STATISTICIAN Language of models Translation Data Search Model Prediction Report Evaluation Checking Problem: Data are now ubiquitous; there is great value from understanding this data, building models and making predictions... however, there aren’t enough data scientists, statisticians, and machine learning experts. Solution: Develop a system that automates model discovery from data: ◮ processing data, searching over models, discovering a good model, and explaining what has been discovered to the user. Zoubin Ghahramani 29 / 53 B ACKGROUND:GAUSSIAN PROCESSES Consider the problem of nonlinear regression: You want to learn a function f with error bars from data D = {X, y} y x A Gaussian process defines a distribution over functions p(f ) which can be used for Bayesian regression: p(f )p(D|f ) p(f |D)= p(D) Definition: p(f ) is a Gaussian process if for any finite subset {x1,...,xn}⊂X, the marginal distribution over that subset p(f) is multivariate Gaussian. GPs can be used for regression, classification, ranking, dim. reduct... Zoubin Ghahramani 31 / 53 Automatic Statistician for Regression and Time-Series Models Zoubin Ghahramani 33 / 53 T HE ATOMS OF OUR LANGUAGE OF MODELS Five base kernels 0 0 0 0 0 Squared Periodic Linear Constant White exp. (SE) (PER) (LIN) (C) noise (WN) Encoding for the following types of functions Smooth Periodic Linear Constant Gaussian functions functions functions functions noise Zoubin Ghahramani 35 / 53 T HE COMPOSITION RULES OF OUR LANGUAGE ◮ Two main operations: addition, multiplication 0 0 quadratic locally LIN × LIN SE × PER functions periodic 0 0 periodic plus periodic plus LIN + PER SE + PER linear trend smooth trend Zoubin Ghahramani 36 / 53 MELOD SEARCH:MAUNA LOA KEELING CURVE ❘ ✻ ✁ ✹ ✁ Start ✷✁ ✁ SE RQ LIN PER ✦✷✁ ✷✁✁✁ ✷✁ ✁✂ ✷✁✄✁ SE + RQ ... PER + RQ ... PER × RQ SE + PER + RQ ... SE × (PER + RQ) ... ... ... ... Zoubin Ghahramani 37 / 53 MELOD SEARCH:MAUNA LOA KEELING CURVE ✭ ✁✂ ✄ ☎✆ ✝ ✹ ✞ ✸ ✞ Start ✷ ✞ ✠ ✞ SE RQ LIN PER ✞ ✷✞ ✞✞ ✷✞✞✟ ✷✞✠ ✞ SE + RQ ... PER + RQ ... PER × RQ SE + PER + RQ ... SE × (PER + RQ) ... ... ... ... Zoubin Ghahramani 37 / 53 MELOD SEARCH:MAUNA LOA KEELING CURVE ❙ ✦ ✥ ✁ ✂✄ ☎ ✆✝ ✞ ✠ ✟ ✹ ✟ Start
Recommended publications
  • Risk Bounds for Classification and Regression Rules That Interpolate
    Overfitting or perfect fitting? Risk bounds for classification and regression rules that interpolate Mikhail Belkin Daniel Hsu Partha P. Mitra The Ohio State University Columbia University Cold Spring Harbor Laboratory Abstract Many modern machine learning models are trained to achieve zero or near-zero training error in order to obtain near-optimal (but non-zero) test error. This phe- nomenon of strong generalization performance for “overfitted” / interpolated clas- sifiers appears to be ubiquitous in high-dimensional data, having been observed in deep networks, kernel machines, boosting and random forests. Their performance is consistently robust even when the data contain large amounts of label noise. Very little theory is available to explain these observations. The vast majority of theoretical analyses of generalization allows for interpolation only when there is little or no label noise. This paper takes a step toward a theoretical foundation for interpolated classifiers by analyzing local interpolating schemes, including geometric simplicial interpolation algorithm and singularly weighted k-nearest neighbor schemes. Consistency or near-consistency is proved for these schemes in classification and regression problems. Moreover, the nearest neighbor schemes exhibit optimal rates under some standard statistical assumptions. Finally, this paper suggests a way to explain the phenomenon of adversarial ex- amples, which are seemingly ubiquitous in modern machine learning, and also discusses some connections to kernel machines and random forests in the interpo- lated regime. 1 Introduction The central problem of supervised inference is to predict labels of unseen data points from a set of labeled training data. The literature on this subject is vast, ranging from classical parametric and non-parametric statistics [48, 49] to more recent machine learning methods, such as kernel machines [39], boosting [36], random forests [15], and deep neural networks [25].
    [Show full text]
  • Probabilistic Circuits: Representations, Inference, Learning and Theory
    Inference Probabilistic Representations Learning Circuits Theory Antonio Vergari YooJung Choi University of California, Los Angeles University of California, Los Angeles Robert Peharz Guy Van den Broeck TU Eindhoven University of California, Los Angeles January 7th, 2021 - IJCAI-PRICAI 2020 Fully factorized NaiveBayes AndOrGraphs PDGs Trees PSDDs CNets LTMs SPNs NADEs Thin Junction Trees ACs MADEs MAFs VAEs DPPs FVSBNs TACs IAFs NAFs RAEs Mixtures BNs NICE FGs GANs RealNVP MNs The Alphabet Soup of probabilistic models 2/153 Fully factorized NaiveBayes AndOrGraphs PDGs Trees PSDDs CNets LTMs SPNs NADEs Thin Junction Trees ACs MADEs MAFs VAEs DPPs FVSBNs TACs IAFs NAFs RAEs Mixtures BNs NICE FGs GANs RealNVP MNs Intractable and tractable models 3/153 Fully factorized NaiveBayes AndOrGraphs PDGs Trees PSDDs CNets LTMs SPNs NADEs Thin Junction Trees ACs MADEs MAFs VAEs DPPs FVSBNs TACs IAFs NAFs RAEs Mixtures BNs NICE FGs GANs RealNVP MNs tractability is a spectrum 4/153 Fully factorized NaiveBayes AndOrGraphs PDGs Trees PSDDs CNets LTMs SPNs NADEs Thin Junction Trees ACs MADEs MAFs VAEs DPPs FVSBNs TACs IAFs NAFs RAEs Mixtures BNs NICE FGs GANs RealNVP MNs Expressive models without compromises 5/153 Fully factorized NaiveBayes AndOrGraphs PDGs Trees PSDDs CNets LTMs SPNs NADEs Thin Junction Trees ACs MADEs MAFs VAEs DPPs FVSBNs TACs IAFs NAFs RAEs Mixtures BNs NICE FGs GANs RealNVP MNs a unifying framework for tractable models 6/153 Why tractable inference? or expressiveness vs tractability 7/153 Why tractable inference? or expressiveness
    [Show full text]
  • Risk Bounds for Classification and Regression Rules That Interpolate
    Overfitting or perfect fitting? Risk bounds for classification and regression rules that interpolate Mikhail Belkin1, Daniel Hsu2, and Partha P. Mitra3 1The Ohio State University, Columbus, OH 2Columbia University, New York, NY 3Cold Spring Harbor Laboratory, Cold Spring Harbor, NY October 29, 2018 Abstract Many modern machine learning models are trained to achieve zero or near-zero training error in order to obtain near-optimal (but non-zero) test error. This phenomenon of strong generalization performance for “overfitted” / interpolated classifiers appears to be ubiquitous in high-dimensional data, having been observed in deep networks, kernel machines, boosting and random forests. Their performance is consistently robust even when the data contain large amounts of label noise. Very little theory is available to explain these observations. The vast majority of theoretical analyses of generalization allows for interpolation only when there is little or no label noise. This paper takes a step toward a theoretical foundation for interpolated classifiers by analyzing local interpolating schemes, including geometric simplicial interpolation algorithm and singularly weighted k-nearest neighbor schemes. Consistency or near-consistency is proved for these schemes in classification and regression problems. Moreover, the nearest neighbor schemes exhibit optimal rates under some standard statistical assumptions. Finally, this paper suggests a way to explain the phenomenon of adversarial examples, which are seemingly ubiquitous in modern machine learning, and also discusses some connections to kernel machines and random forests in the interpolated regime. 1 Introduction arXiv:1806.05161v3 [stat.ML] 26 Oct 2018 The central problem of supervised inference is to predict labels of unseen data points from a set of labeled training data.
    [Show full text]
  • Part I Officers in Institutions Placed Under the Supervision of the General Board
    2 OFFICERS NUMBER–MICHAELMAS TERM 2009 [SPECIAL NO.7 PART I Chancellor: H.R.H. The Prince PHILIP, Duke of Edinburgh, T Vice-Chancellor: 2003, Prof. ALISON FETTES RICHARD, N, 2010 Deputy Vice-Chancellors for 2009–2010: Dame SANDRA DAWSON, SID,ATHENE DONALD, R,GORDON JOHNSON, W,STUART LAING, CC,DAVID DUNCAN ROBINSON, M,JEREMY KEITH MORRIS SANDERS, SE, SARAH LAETITIA SQUIRE, HH, the Pro-Vice-Chancellors Pro-Vice-Chancellors: 2004, ANDREW DAVID CLIFF, CHR, 31 Dec. 2009 2004, IAN MALCOLM LESLIE, CHR, 31 Dec. 2009 2008, JOHN MARTIN RALLISON, T, 30 Sept. 2011 2004, KATHARINE BRIDGET PRETTY, HO, 31 Dec. 2009 2009, STEPHEN JOHN YOUNG, EM, 31 July 2012 High Steward: 2001, Dame BRIDGET OGILVIE, G Deputy High Steward: 2009, ANNE MARY LONSDALE, NH Commissary: 2002, The Rt Hon. Lord MACKAY OF CLASHFERN, T Proctors for 2009–2010: JEREMY LLOYD CADDICK, EM LINDSAY ANNE YATES, JN Deputy Proctors for MARGARET ANN GUITE, G 2009–2010: PAUL DUNCAN BEATTIE, CC Orator: 2008, RUPERT THOMPSON, SE Registrary: 2007, JONATHAN WILLIAM NICHOLLS, EM Librarian: 2009, ANNE JARVIS, W Acting Deputy Librarian: 2009, SUSANNE MEHRER Director of the Fitzwilliam Museum and Marlay Curator: 2008, TIMOTHY FAULKNER POTTS, CL Director of Development and Alumni Relations: 2002, PETER LAWSON AGAR, SE Esquire Bedells: 2003, NICOLA HARDY, JE 2009, ROGER DERRICK GREEVES, CL University Advocate: 2004, PHILIPPA JANE ROGERSON, CAI, 2010 Deputy University Advocates: 2007, ROSAMUND ELLEN THORNTON, EM, 2010 2006, CHRISTOPHER FORBES FORSYTH, R, 2010 OFFICERS IN INSTITUTIONS PLACED UNDER THE SUPERVISION OF THE GENERAL BOARD PROFESSORS Accounting 2003 GEOFFREY MEEKS, DAR Active Tectonics 2002 JAMES ANTHONY JACKSON, Q Aeronautical Engineering, Francis Mond 1996 WILLIAM NICHOLAS DAWES, CHU Aerothermal Technology 2000 HOWARD PETER HODSON, G Algebra 2003 JAN SAXL, CAI Algebraic Geometry (2000) 2000 NICHOLAS IAN SHEPHERD-BARRON, T Algebraic Geometry (2001) 2001 PELHAM MARK HEDLEY WILSON, T American History, Paul Mellon 1992 ANTHONY JOHN BADGER, CL American History and Institutions, Pitt 2009 NANCY A.
    [Show full text]
  • Machine Learning Conference Report
    Part of the conference series Breakthrough science and technologies Transforming our future Machine learning Conference report Machine learning report – Conference report 1 Introduction On 22 May 2015, the Royal Society hosted a unique, high level conference on the subject of machine learning. The conference brought together scientists, technologists and experts from across academia, industry and government to learn about the state-of-the-art in machine learning from world and UK experts. The presentations covered four main areas of machine learning: cutting-edge developments in software, the underpinning hardware, current applications and future social and economic impacts. This conference is the first in a new series organised This report is not a verbatim record, but summarises by the Royal Society, entitled Breakthrough Science the discussions that took place during the day and the and Technologies: Transforming our Future, which will key points raised. Comments and recommendations address the major scientific and technical challenges reflect the views and opinions of the speakers and of the next decade. Each conference will focus on one not necessarily that of the Royal Society. Full versions technology and cover key issues including the current of the presentations can be found on our website at: state of the UK industry sector, future direction of royalsociety.org/events/2015/05/breakthrough-science- research and the wider social and economic implications. technologies-machine-learning The conference series is being organised through the Royal Society’s Science and Industry programme, which demonstrates our commitment to reintegrate science and industry at the Society and to promote science and its value, build relationships and foster translation.
    [Show full text]
  • AAAI News AAAI News
    AAAI News AAAI News Winter News from the Association for the Advancement of Artificial Intelligence AAAI-18 Registration Student Activities looking for internships or jobs to meet with representatives from over 30 com - As part of its outreach to students, Is Open! panies and academia in an informal AAAI-18 will continue several special "meet-and-greet" atmosphere. If you AAAI-18 registration information is programs specifically for students, are representing a company, research now available at aaai.org/aaai18, and including the Doctoral Consortium, organization or university and would online registration can be completed at the Student Abstract Program, Lunch like to participate in the job fair, please regonline.com/aaai18. The deadline with a Fellow, and the Volunteer Pro - send an email with your contact infor - for late registration rates is January 5, gram, in addition to the following: 2018. Complete tutorial and workshop mation to [email protected] no later than January 5. The organizers of information, as well as other special Student Reception the AAAI/ACM SIGAI Job Fair are John program information is available at AAAI will welcome all students to Dickerson (University of Maryland, these sites. AAAI-18 by hosting an evening stu - USA) and Nicholas Mattei (IBM, USA). dent reception on Friday, February 2. Make Your Hotel Reservation Although the reception is especially The Winograd Now! beneficial to new students at the con - Schema Challenge AAAI has reserved a block of rooms at ference, all are welcome! Please join us and make all the newcomers welcome! Nuance Communications, Inc. is spon - the Hilton New Orleans Riverside at soring a competition to encourage reduced conference rates.
    [Show full text]
  • Bayesian Activity Recognition Using Variational Inference
    BAR: Bayesian Activity Recognition using variational inference Ranganath Krishnan Mahesh Subedar Omesh Tickoo [email protected] [email protected] [email protected] Intel Labs Hillsboro, OR (USA) Abstract Uncertainty estimation in deep neural networks is essential for designing reliable and robust AI systems. Applications such as video surveillance for identifying suspicious activities are designed with deep neural networks (DNNs), but DNNs do not provide uncertainty estimates. Capturing reliable uncertainty estimates in safety and security critical applications will help to establish trust in the AI system. Our contribution is to apply Bayesian deep learning framework to visual activity recognition application and quantify model uncertainty along with principled confidence. We utilize the stochastic variational inference technique while training the Bayesian DNNs to infer the approximate posterior distribution around model parameters and perform Monte Carlo sampling on the posterior of model parameters to obtain the predictive distribution. We show that the Bayesian inference applied to DNNs provide reliable confidence measures for visual activity recognition task as compared to conventional DNNs. We also show that our method improves the visual activity recognition precision-recall AUC by 6.2% compared to non-Bayesian baseline. We evaluate our models on Moments-In-Time (MiT) activity recognition dataset by selecting a subset of in- and out-of-distribution video samples. 1 Introduction Activity recognition is an active area of research with multiple approaches depending on the applica- tion domain and the types of sensors [1, 2, 3]. In recent years, the DNN models applied to the visual activity recognition task outperform the earlier methods based on Gaussian Mixture Models and Hid- den Markov Models [4, 5] using handcrafted features.
    [Show full text]
  • Automatic Opioid User Detection from Twitter
    Proceedings of the Twenty-Seventh International Joint Conference on Artificial Intelligence (IJCAI-18) Automatic Opioid User Detection From Twitter: Transductive Ensemble Built On Different Meta-graph Based Similarities Over Heterogeneous Information Network Yujie Fan, Yiming Zhang, Yanfang Ye ∗, Xin Li Department of Computer Science and Electrical Engineering, West Virginia University, WV, USA fyf0004,[email protected], fyanfang.ye,[email protected] Abstract 13,000 people died from heroin overdose, both reflecting sig- nificant increase from 2002 [NIDA, 2017]. Opioid addiction Opioid (e.g., heroin and morphine) addiction has is a chronic mental illness that requires long-term treatment become one of the largest and deadliest epidemics and care [McLellan et al., 2000]. Although Medication As- in the United States. To combat such deadly epi- sisted Treatment (MAT) using methadone or buprenorphine demic, in this paper, we propose a novel frame- has been proven to provide best outcomes for opioid addiction work named HinOPU to automatically detect opi- recovery, stigma (i.e., bias) associated with MAT has limited oid users from Twitter, which will assist in sharp- its utilization [Saloner and Karthikeyan, 2015]. Therefore, ening our understanding toward the behavioral pro- there is an urgent need for novel tools and methodologies to cess of opioid addiction and treatment. In HinOPU, gain new insights into the behavioral processes of opioid ad- to model the users and the posted tweets as well diction and treatment. as their rich relationships, we introduce structured In recent years, the role of social media in biomedical heterogeneous information network (HIN) for rep- knowledge mining has become more and more important resentation.
    [Show full text]
  • Deep Learning
    ADVANCEMENTS AND TRENDS IN MEDICAL IMAGE ANALYSIS USING DEEP LEARNING A presentation by Shekoofeh Azizi University of British Columbia, Canada, Ph.D. 2014-2018 Electrical and Computer Engineering Isfahan University of Technology, Iran, M.Sc. 2011-2013 Computer Engineering / Hardware Design Isfahan University of Technology, Iran, B.Sc. 2007-2011 Computer Engineering / Hardware Engineering Philips Research North America, 2015-now National Institutes of Health (NIH), 2015-now MICCAI Student Board Officer, 2016-now Women in MICCAI, 2017-now 2 UBC Queen’s University SFU Univ. of Western Ontario VGH Robarts Research Technical Univ. of Munich ETH Zurich NVidia Sejong Univ., Korea Philips IBM Univ. of Colorado NIH Size is related to the number of collaborators Academic Collaborators Industrial/Clinical Collaborators 3 OUTLINE Deep Learning Medical Imaging Challenges and Vision Opportunities 4 DEEP LEARNING 5 ARTIFICIAL INTELLIGENCE VS. DATA SCIENCE AI is a technique which enables machines to mimic the “human behaviour” It’s 17°C Hey Google, and sunny in Weather in Victoria Victoria! Voice Services Voice to Command Brain/Model Voice Output User Google Home Google Home 6 ARTIFICIAL INTELLIGENCE VS. DATA SCIENCE Data Science is about processes and systems to extract knowledge or insights from data in Artificial Intelligence various forms. (AI) Machine Learning is the connection Machine Learning between data science and artificial (ML) intelligence since machine learning is the process of learning from data over time. Data Science Deep Learning (DL) 7 MACHINE LEARNING (ML) Machine learning is the process of learning from data over time. Reinforcement Learning Andrew Ng, Machine Learning Course, Coursera. 9 DEEP LEARNING (DL) Inspired by the functionality of our brains Number of sides: 4? Closed form shape? Perpendicular sides? Square ? Equal sides? 10 DEEP LEARNING (DL) Cat Feature Learning Dog 11 DEEP LEARNING (DL) 12 WHY DEEP LEARNING? Consistent improvement over the state-of-the-art across a large variety of domains.
    [Show full text]
  • Uncertainty in Deep Learning
    References Martín Abadi, Ashish Agarwal, Paul Barham, Eugene Brevdo, Zhifeng Chen, Craig Citro, Greg S. Corrado, Andy Davis, Jefrey Dean, Matthieu Devin, Sanjay Ghemawat, Ian Goodfellow, Andrew Harp, Geofrey Irving, Michael Isard, Yangqing Jia, Rafal Jozefowicz, Lukasz Kaiser, Manjunath Kudlur, Josh Levenberg, Dan Mané, Rajat Monga, Sherry Moore, Derek Murray, Chris Olah, Mike Schuster, Jonathon Shlens, Benoit Steiner, Ilya Sutskever, Kunal Talwar, Paul Tucker, Vincent Vanhoucke, Vijay Vasudevan, Fernanda Viégas, Oriol Vinyals, Pete Warden, Martin Wattenberg, Martin Wicke, Yuan Yu, and Xiaoqiang Zheng. TensorFlow: Large-scale machine learning on heterogeneous systems, 2015. URL http://tensorĆow.org/. Software available from tensorĆow.org. Dario Amodei, Chris Olah, Jacob Steinhardt, Paul Christiano, John Schulman, and Dan Mane. Concrete problems in ai safety. arXiv preprint arXiv:1606.06565, 2016. C Angermueller and O Stegle. Multi-task deep neural network to predict CpG methylation proĄles from low-coverage sequencing data. In NIPS MLCB workshop, 2015. O Anjos, C Iglesias, F Peres, J Martínez, Á García, and J Taboada. Neural networks applied to discriminate botanical origin of honeys. Food chemistry, 175:128Ű136, 2015. Christopher Atkeson and Juan Santamaria. A comparison of direct and model-based reinforcement learning. In In International Conference on Robotics and Automation. Citeseer, 1997. Jimmy Ba and Brendan Frey. Adaptive dropout for training deep neural networks. In Advances in Neural Information Processing Systems, pages 3084Ű3092, 2013. P Baldi, P Sadowski, and D Whiteson. Searching for exotic particles in high-energy physics with deep learning. Nature communications, 5, 2014. Pierre Baldi and Peter J Sadowski. Understanding dropout. In Advances in Neural Information Processing Systems, pages 2814Ű2822, 2013.
    [Show full text]
  • Arxiv:2012.12294V2 [Stat.ML] 16 Apr 2021 1 Introduction
    Evolutionary Variational Optimization of Generative Models Jakob Drefs1, Enrico Guiraud1;2, Jörg Lücke1 [email protected], [email protected], [email protected] 1 Machine Learning Lab, University of Oldenburg, Germany 2 CERN, Switzerland Abstract We combine two popular optimization approaches to derive learning algorithms for generative models: variational optimization and evolutionary algorithms. The combination is realized for generative models with discrete latents by using truncated posteriors as the family of variational distributions. The variational parameters of truncated posteriors are sets of latent states. By interpreting these states as genomes of individuals and by using the variational lower bound to define a fitness, we can apply evolutionary algorithms to realize the variational loop. The used variational distributions are very flexible and we show that evolutionary algorithms can effectively and efficiently optimize the variational bound. Furthermore, the variational loop is generally applicable (“black box”) with no analytical derivations required. To show general applicability, we apply the approach to three generative models (we use noisy-OR Bayes Nets, Binary Sparse Coding, and Spike-and-Slab Sparse Coding). To demonstrate effectiveness and efficiency of the novel variational approach, we use the standard competitive benchmarks of image denoising and inpainting. The benchmarks allow quantitative comparisons to a wide range of methods including probabilistic approaches, deep deterministic and generative networks, and non-local image processing methods. In the category of “zero-shot” learning (when only the corrupted image is used for training), we observed the evolutionary variational algorithm to significantly improve the state-of-the-art in many benchmark settings. For one well-known inpainting benchmark, we also observed state-of-the-art performance across all categories of algorithms although we only train on the corrupted image.
    [Show full text]
  • Lms Society and Annual General Meeting 2017 Agenda
    LMS SOCIETY AND ANNUAL GENERAL MEETING 2017 Friday, 10 November 2017 at 3.00 pm at BMA House, Tavistock Square, London AGENDA 1. Elections to Council and Nominating Committee Members wishing to vote in person at the AGM will be invited to hand their ballot paper to a Scrutineer. 2. Minutes of General Meeting, 30 June 2017 To agree the minutes of the General Meeting held on 30 June 2017 (minutes attached). 3. Review of Society Activities 2016-17 A report will be given by Vice-President Professor Ken Brown on the Society’s activities over the last year. 4. Report of the Treasurer The Society’s Treasurer, Professor Rob Curtis, will present his report on the past year and invite questions. 5. Resolutions: 5.1 Adoption of the Trustees’ Report including the year-end accounts for 2016-17 (Trustees’ Report attached) 5.2 Appointment of Auditors The Society’s President, Professor Simon Tavaré, will invite questions on the resolutions and recommend the adoption of the Trustees’ Report and the appointment of the Auditors. 6. Presentation of Certificates to the 2017 LMS Prize Winners Certificates will be presented to the winners of the Pólya Prize, Senior Whitehead Prize, Naylor Prize and Lectureship, Senior Anne Bennett Prize, Whitehead Prizes and Berwick Prize. 7. Zoubin Ghahramani (Professor of Information Engineering, University of Cambridge; Chief Scientist, Uber) Bayesian statistics, non-parametrics, neural networks, and artificial intelligence Tea break 8. Election Results The election results will be declared by the Scrutineers. 9. Handover of Presidential Office 10. Simon Tavaré (Department of Applied Mathematics and Theoretical Physics & Cancer Research UK Cambridge Institute, University of Cambridge) – Presidential Address The magical Ewens Sampling Formula Fiona Nixon, Executive Secretary 20 October 2017 Please note there will be a photographer at the meeting.
    [Show full text]