By Eric I-Hung Hsu a Thesis Submitted in Conformity with the Requirements

Total Page:16

File Type:pdf, Size:1020Kb

By Eric I-Hung Hsu a Thesis Submitted in Conformity with the Requirements INTEGRATING PROBABILISTIC REASONING WITH CONSTRAINT SATISFACTION by Eric I-Hung Hsu A thesis submitted in conformity with the requirements for the degree of Doctor of Philosophy Graduate Department of Computer Science University of Toronto Copyright c 2011 by Eric I-Hung Hsu Abstract Integrating Probabilistic Reasoning with Constraint Satisfaction Eric I-Hung Hsu Doctor of Philosophy Graduate Department of Computer Science University of Toronto 2011 We hypothesize and confirm that probabilistic reasoning is closely related to constraint sat- isfaction at a formal level, and that this relationship yields effective algorithms for guiding constraint satisfaction and constraint optimization solvers. By taking a unified view of probabilistic inference and constraint reasoning in terms of graphical models, we first associate a number of formalisms and techniques between the two areas. For instance, we characterize search and inference in constraint reasoning as summation and multiplication (or disjunction and conjunction) in the probabilistic space; necessary but insufficient consistency conditions for solutions to constraint problems (like arc-consistency) mirror approximate objective functions over probability distributions (like the Bethe free en- ergy); and the polytope of feasible points for marginal probabilities represents the linear relax- ation of a particular constraint satisfaction problem. While such insights synthesize an assortment of existing formalisms from varied research communities, they also yield an entirely novel set of “bias estimation” techniques that con- tribute to a growing body of research on applying probabilistic methods to constraint prob- lems. In practical terms, these techniques estimate the percentage of solutions to a constraint satisfaction or optimization problem wherein a given variable is assigned a given value. By de- vising search methods that incorporate such information as heuristic guidance for variable and value ordering, we are able to outperform existing solvers on problems of interest from con- straint satisfaction and constraint optimization–as represented here by the SAT and MaxSAT ii problems. Further, for MaxSAT we present an “equivalent transformation” process that normalizes the weights in constraint optimization problems, in order to encourage prunings of the search tree during branch-and-bound search. To control such computationally expensive processes, we determine promising situations for using them throughout the course of an individual search process. We accomplish this using a reinforcement learning-based control module that seeks a principled balance between the exploration of new strategies and the exploitation of existing experiences. iii Acknowledgements I would like to recognize the support and friendship of Sheila McIlraith, my academic advisor, throughout the preparation of this dissertation, the conduct of the research that it represents, and the overall process of completing the doctoral program. Thanks also to my committee members, Fahiem Bacchus and Chris Beck, as well as the external examiner, Gilles Pesant, for their many valuable corrections, criticisms, questions, and suggestions, as well as their constant advocacy and flexibility. For their guidance and inspiration earlier in my career, I would also like to acknowledge Barbara Grosz, Karen Myers, Charlie Ortiz, and Wheeler Ruml. Many other researchers have made direct contributions, small or large, to the specific project described in this dissertation. A partial listing would include: Dimitris Achlioptas, Ronan Le Bras, Jessica Davies, Rina Dechter, Niklas Een,´ John Franco, Brendan Frey, Inmar Givoni, Vibhav Gogate, Carla Gomes, Geoff Hinton, Holger Hoos, Frank Hutter, Matthew Kitching, Lukas Kroc, Chu Min Li, Victor Marek, Mike Molloy, Christian Muise, Pandu Nayak, Andrew Ng, Ashish Sabharwal, Horst Samulowitz, Sean Weaver, Toma´sˇ Werner, Lin Xu, Alessandro Zanarini, and many anonymous reviewers who have applied their attention and intellect to previous publications. I am glad to be in the professional and/or personal company of such researchers, as well as the many more who did not have a direct role in this specific project but have enriched my experience to this point. Finally, the dissertation is dedicated to my mate, Sara Mostafavi. iv Contents I Foundations 13 1 Computing Marginal Probabilities over Graphical Models 14 1.1 Graphical Models and Marginal Probabilities . 15 1.1.1 Basic Factor Graphs: Definitions, Notation, and Terminology . 16 1.1.2 Transforming a Factor Graph: the Dual Graph and Redundant Graph . 19 1.1.3 The Marginal Computation Problem . 23 1.2 Exact Methods for Computing Marginals . 27 1.2.1 Message Passing for Trees . 27 1.2.2 Transforming Arbitrary Graphs into Trees . 31 1.2.3 Other Methods: Cycle-Cutset and Recursive Conditioning . 38 1.3 Inexact Methods for Computing Marginals . 39 1.3.1 Message-Passing Algorithms . 39 1.3.2 Gibbs Sampling and MCMC . 41 1.4 The Most Probable Explanation (MPE) Problem . 42 2 Message-Passing Techniques for Computing Marginals 50 2.1 Belief Propagation as Optimization . 50 2.1.1 Gibbs Free Energy . 51 2.1.2 Mean Field Free Energy Approximation . 53 2.1.3 Bethe Free Energy Approximation . 55 v 2.1.4 Kikuchi Free Energy Approximation . 57 2.2 Other Methods as Optimization: Approximating the Marginal Polytope . 58 3 Solving Constraint Satisfaction Problems 62 3.1 Factor Graph Representation of Constraint Satisfaction . 63 3.2 Complete Solution Principles for Constraint Satisfaction . 70 3.2.1 Search . 71 3.2.2 Inference . 77 3.3 Incomplete Solution Principles for Constraint Satisfaction . 84 3.3.1 Decimation . 85 3.3.2 Local Search . 86 3.4 The Optimization, Counting, and Unsatisfiability Problems . 89 4 Theoretical Models for Analyzing Constraint Problems 91 4.1 The Phase Transition for Random Constraint Satisfaction Problems . 92 4.1.1 Defining Random Problems and the Phase Transition . 92 4.1.2 Geometry of the Solution Space . 94 4.2 The Survey Propagation Model of Boolean Satisfiability . 97 4.3 Backbone Variables and Backdoor Sets . 98 4.3.1 Definitions and Related Work . 98 4.3.2 Relevance to the Research Goals . 100 5 Integrated View of Probabilistic and Constraint Reasoning 102 5.1 Relationship between Probabilistic Inference and Constraint Satisfaction . 103 5.1.1 Representing Constraint/Probabilistic Reasoning as Discrete/Continuous Optimization . 105 5.1.2 Duality in Probabilistic Reasoning, Constraint Satisfaction, and Nu- merical/Combinatorial Optimization . 113 vi 5.1.3 Node-Merging . 116 5.1.4 Adding Constraints During the Solving Process . 117 5.1.5 Correspondences between Alternative Approaches . 118 5.2 EMBP: Expectation Maximization Belief Propagation . 119 5.2.1 Deriving the EMBP Update Rule within the EM Framework. 120 5.2.2 M-Step . 122 5.2.3 E-Step . 125 5.2.4 The EMBP Update Rule . 127 5.2.5 Relation to (Loopy) BP and Other Methods . 129 5.2.6 Practical Yield of EMBP . 130 II Solving Constraint Satisfaction Problems 132 6 A Family of Bias Estimators for Constraint Satisfaction 133 6.1 Existing Methods and Design Criteria . 134 6.2 Deriving New Bias Estimators for SAT . 139 6.2.1 The General EMBP Framework for SAT . 140 6.2.2 Representing the Q-Distribution in Closed Form . 143 6.2.3 Deriving EMBP-L . 144 6.2.4 Deriving EMBP-G . 146 6.2.5 Deriving EMSP-L . 148 6.2.6 Deriving EMSP-G . 149 6.2.7 Other Bias Estimators . 151 6.3 Interpreting the Bias Estimators . 153 7 Using Bias Estimators in Backtracking Search 158 7.1 Architecture and Design Decisions for the VARSAT Integrated Solver . 160 7.1.1 The General Design of VARSAT . 160 vii 7.1.2 Specific Design Decisions within VARSAT . 161 7.2 Standalone Performance of SAT Bias Estimators . 165 7.2.1 Experimental Setup . 166 7.2.2 Findings . 167 7.2.3 Other Experiments . 171 7.3 Performance of Bias Estimation in Search . 173 7.3.1 Limitations and Conclusions . 177 III Solving Constraint Optimization Problems 180 8 A Family of Bias Estimators for Constraint Optimization 181 8.1 Existing Methods and Design Criteria . 182 8.1.1 Branch-and-Bound Search . 183 8.1.2 Other Probabilistic Approaches . 185 8.2 Creating an Approximate Distribution over MaxSAT Solutions . 186 8.3 Deriving New Bias Estimators for MaxSAT . 188 9 Using Bias Estimators in Branch-and-Bound Search 191 9.1 Architecture and Design Decisions for the MAXVARSAT Integrated Solver . 191 9.2 Performance of Bias Estimation in Search . 195 9.2.1 Random Problems . 195 9.2.2 General Problems . 196 9.2.3 Limitations and Conclusions . 198 10 Computing MHET for Constraint Optimization 201 10.1 Motivation and Definitions . 202 10.2 Adopting the Max-Sum Diffusion Algorithm to Perform MHET on MaxSAT . 209 10.3 Implementation and Results . 217 viii 10.3.1 Problems for which MHET is Beneficial, Neutral, or Harmful Overall . 217 10.3.2 Direct Measurement of Pruning Capability, and Proportion of Runtime 219 10.3.3 Practical Considerations: Blending the Two Pruning Methods . 220 10.4 Related Work and Conclusions . 222 10.4.1 Comparison with the Virtual Arc-Consistency Algorithm . 223 10.4.2 Conclusion . 224 IV Pragmatics 227 11 Online Control of Constraint Solvers 228 11.1 Existing Automatic Control Methods . 229 11.2 Reinforcement Learning Representation of Branch-and-Bound Search . 233 11.2.1 Markov Decision Processes and Q-Learning . 234 11.2.2 Theoretical Features of Q-Learning. 237 11.3 Application to MaxSAT . 237 11.4 Experimental Design and Results . 240 11.4.1 Example Policy Generated Dynamically by Q-Learning . 244 11.4.2 Concluding Remarks . 246 12 Future Work 249 12.1 General Program for Future Research . 249 12.2 Specific Research Opportunities . 251 12.2.1 Conceptual Research Directions . 251 12.2.2 Algorithmic Research Directions . 253 12.2.3 Implementational Research Directions . 255 13 Conclusion 256 Bibliography 259 ix List of Tables 5.1 Primal/Dual concepts from constraint satisfaction and probabilistic reasoning. 115 5.2 EM formulation for estimating marginals using the redundant factor graph transformation.
Recommended publications
  • A 20-Year Community Roadmap for Artificial Intelligence Research in the US
    A 20-Year Community Roadmap for Begin forwarded message: From: AAAI Press <[email protected]> Subject: Recap Date: July 8, 2019 at 3:52:40 PM PDT To: Carol McKenna Hamilton <[email protected]>Artificial Intelligence Research in the US Could you check this for me? Hi Denise, While it is fresh in my mind, I wanted to provide you with a recap on the AAAI proceedings work done. Some sections of the proceedings were better than others, which is to be expected because authors in some subject areas are less likely to use gures, the use of which is a signicant factor in error rate. The vision section was an excellent example of this variability. The number of problems in this section was quite high. Although I only called out 13 papers for additional corrections, there were many problems that I simply let go. What continues to be an issue, is why the team didn’t catch many of these errors before compilation began. For example, some of the errors involved the use of the caption package, as well as the existence of setlength commands. These are errors that should have been discovered and corrected before compilation. As I’ve mentioned before, running search routines on the source of all the papers in a given section saves a great deal of time because, in part, it insures consistency. That is something that has been decidedly lacking with regard to how these papers have been (or haven’t been) corrected. It is a cause for concern because the error rate should have been improving, not getting worse.
    [Show full text]
  • Computational Sustainability: Computing for a Better World and a Sustainable Future
    Computational Sustainability: Computing for a Better World and a Sustainable Future CARLA GOMES, CORNELL UNIVERSITY; THOMAS DIETTERICH, OREGON STATE UNIVERSITY; BISTRA DILKINA, UNIVERSITY OF SOUTH CALIFORNIA; STEFANO ERMON, STANFORD UNIVERSITY; FEI FANG, CARNEGIE MELLON UNIVERSITY; ANDREW FARNSWORTH, CORNELL UNIVERSITY; ALAN FERN, OREGON STATE UNIVERSITY; XIAOLI FERN, OREGON STATE UNIVERSITY; DANIEL FINK, CORNELL UNIVERSITY; DOUGLAS FISHER, VANDERBILT UNIVERSITY; ALEXANDER FLECKER, CORNELL UNIVERSITY; DANIEL FREUND, MASSACHUSSETS INSTITUTE OF TECHNOLOGY; ANGELA FULLER, UNITED STATES GEOLOGICAL SURVEY; JOHN GREGOIRE, CALTECH INSTITUTE OF TECHNOLOGY; JOHN HOPCROFT, CORNELL UNIVERSITY; ZICO KOLTER, CARNEGIE MELLON UNIVERSITY; WARREN POWELL, PRINCETON UNIVERSITY; NICOLE SANTOV, OHIO STATE UNIVERSITY; JOHN SELKER, OREGON STATE UNIVERSITY; BART SELMAN, CORNELL UNIVERSITY; DANIEL SHELDON, UNIVERSITY OF MASSACHUSSETS AMHERST; DAVID SHMOYS, CORNELL UNIVERSITY; MILIND TAMBE, UNIVERSITY OF SOUTH CALIFORNIA; CHRISTOPHER WOOD, CORNELL UNIVERSITY; WENG-KEEN WONG, OREGON STATE UNIVERSITY; XIAOJIAN WU, MICROSOFT; STEVE KELLING, CORNELL UNIVERSITY; YEXIANG XUE, PURDUE UNIVERSITY; AMULYA YADAV, PENNSYLVANIA STATE UNIVERSITY; AZIZ YAKUBU, HOWARD UNIVERSITY; MARY LOU ZEEMAN, BOWDOIN COLLEGE Computational sustainability aims to develop computational methods to help solve environmental, economic, and societal problems and thereby facilitate a path towards a sustainable future. Sustainability problems are unique in scale, impact, complexity, and richness, offering
    [Show full text]
  • A 20-Year Community Roadmap for Artificial Intelligence Research in the US
    A 20-Year Community Roadmap for Begin forwarded message: From: AAAI Press <[email protected]> Subject: Recap Date: July 8, 2019 at 3:52:40 PM PDT To: Carol McKenna Hamilton <[email protected]>Artificial Intelligence Research in the US Could you check this for me? Hi Denise, While it is fresh in my mind, I wanted to provide you with a recap on the AAAI proceedings work done. Some sections of the proceedings were better than others, which is to be expected because authors in some subject areas are less likely to use gures, the use of which is a signicant factor in error rate. The vision section was an excellent example of this variability. The number of problems in this section was quite high. Although I only called out 13 papers for additional corrections, there were many problems that I simply let go. What continues to be an issue, is why the team didn’t catch many of these errors before compilation began. For example, some of the errors involved the use of the caption package, as well as the existence of setlength commands. These are errors that should have been discovered and corrected before compilation. As I’ve mentioned before, running search routines on the source of all the papers in a given section saves a great deal of time because, in part, it insures consistency. That is something that has been decidedly lacking with regard to how these papers have been (or haven’t been) corrected. It is a cause for concern because the error rate should have been improving, not getting worse.
    [Show full text]
  • Machine Ethics and Robot Ethics the Library of Essays on the Ethics of Emerging Technologies
    MACHINE ETHICS AND ROBOT ETHICS THE LIBRARY OF ESSAYS ON THE ETHICS OF EMERGING TECHNOLOGIES Series editor: Wendell Wallach Titles in the series The Ethical Challenges of Emerging Medical Technologies Edited by Arthur L. Caplan and Brendan Parent The Ethics of Biotechnology Edited by Gaymon Bennett The Ethics of Nanotechnology, Geoengineering, and Clean Energy Edited by Andrew Maynard and Jack Stilgoe The Ethics of Sports Technologies and Human Enhancement Edited by Thomas H. Murray and Voo Teck Chuan Emerging Technologies Edited by Gary E. Marchant and Wendell Wallach The Ethics of Information Technologies Edited by Keith W. Miller and Mariarosaria Taddeo Machine Ethics and Robot Ethics Edited by Wendell Wallach and Peter Asaro The Ethics of Military Technology Edited by Braden Allenby Machine Ethics and Robot Ethics Wendell Wallach, Yale University, USA, and Peter asaro, New School for Public Engagement, USA THE LIBRAY OF ESSAYS ON THE ETHICS OF EMERGING TECHNOLOGIES First published 2017 by Routledge 2 Park Square, Milton Park, Abingdon, Oxon OX14 4RN and by Routledge 711 Third Avenue, New York, NY 10017 Routledge is an imprint of the Taylor & Francis Group, an informa business Editorial material and selection © 2017 Wendell Wallach and Peter Asaro; individual owners retain copyright in their own material. All rights reserved. No part of this book may be reprinted or reproduced or utilised in any form or by any electronic, mechanical, or other means, now known or hereafter invented, including photocopying and recording, or in any information storage or retrieval system, without permission in writing from the publishers. Trademark notice: Product or corporate names may be trademarks or registered trademarks, and are used only for identification and explanation without intent to infringe.
    [Show full text]
  • Control and Responsible Innovation in the Development of AI and Robotics
    Control and Responsible Innovation in the Development of AI and Robotics Draft Final Report Edited by Wendell Wallach With contributions from Carla Gomes, Gary Marchant, David Roscoe, Francesca Rossi, Stuart Russell, Bart Selman, and Shannon Vallor Gregory Kaebnick and Isabel Bolo provided editorial assistance with this report. A project of The Hastings Center, supported by funding from the Future of Life Institute DRAFT ii DRAFT Table of Contents I. Executive Summary/Recommendations………………………………………..….3 II. Introduction…………………………………………………………………………......5 Background and Project Origin AI Safety and Ethics III. Silo-busting, Collaboration, and Trust……………………………………….……11 AI: Whom Do You Trust? — David Roscoe The Need for Trustworthy AI — Carla Gomes and Bart Selman IV. Addressing Nearer-Term Ethical Challenges versus Longer-Term Approaches to AI Safety…………….………………………………………………24 Value Alignment and Machine Ethics — Shannon Vallor Towards Provably Beneficial AI — Stuart Russell V. Agile and Comprehensive Governance………………………………….................................................................43 An Agile Ethical/Legal Model for the International and National Governance of AI and Robotics — Wendell Wallach and Gary Marchant “Soft Law” Governance of Artificial Intelligence — Gary Marchant VI. Conclusion…………………….……………………………………………………….69 Appendix: Project Participants…………………….……………………………………….73 1 DRAFT 2 DRAFT Section I. Executive Summary/Recommendations Artificial intelligence (AI) and robotics promise tremendous benefit but are accompanied by an
    [Show full text]
  • A 20-Year Community Roadmap for Artificial Intelligence Research In
    CCC ~m putingComm unity Consortium C..talyst A 20-Year Community Roadmap for Artificial Intelligence Research in the US Executive Summary March 2019 Co-chairs: Yolanda Gil and Bart Selman Decades of a1tificial intelligence (AI) research have produced fo1midable technologies that are providing immense benefit to industiy, government, and society. AI systems can now ti·anslate across multiple languages, identify objects in images and video, converse about order placement, and conti·ol cars. The ubiquitous deployment of AI systems has not only created a ti·illion dollar AI industiy that is projected to quadiuple in three years, but has also exposed the need to make AI systems fair and t1ustwo1thy as well as more competent about the world in which they (and we) operate. Future AI systems will be rightfully expected to handle complex tasks and responsibilities, engage in meaningful communication, and improve their awareness through expedence. The next generation of AI systems have the potential for t1·ansfo1m ative impact on society. For example, lifelong personal assistants will enable an elderly population to live longer independently, AI health coaches will provide advice for lifestyle choices, customized AI tutors will broaden education oppo1tunities, and AI scientific assistants will dramatically accelerate the pace of discove1y. Recognizing that AI will be a major &·iver of the economy over the next several decades, Asia and Europe are making multi-billion dollar AI investments. With strategic investments, the US can remain the preeminent leader in AI and benefit from its broad societal and economic impacts. Achieving the fu ll potential of AI technologies po ses research challenges that will require significant sustained investment and a radical transformation of the AI research enterprise.
    [Show full text]
  • The State of SAT
    The State of SAT Henry Kautz a and Bart Selman b aDepartment of Computer Science, University of Washington, Seattle, WA 98195, USA [email protected] bDepartment of Computer Science, Cornell University, Ithaca, NY 14853, USA, [email protected] Abstract The papers in this special issue originated at SAT 2001, the Fourth International Symposium on the Theory and Applications of Satisfiability Testing. This foreword reviews the current state of satisfiability testing and places the papers in this issue in context. Key words: Boolean satisfiability, complexity, challenge problems. 1 Introduction The past few years have seen enormous progress in the performance of Boolean satisfiability (SAT) solvers. Despite the worst-case exponential run time of all known algorithms, SAT solvers are now in routine use for applications such as hardware verification [1] that involve solving hard structured problems with up to a million variables [2,3]. Each year the International Conference on Theory and Applications of Satisfiability Testing hosts a SAT competition that highlights a new group of “world’s fastest” SAT solvers, and presents detailed performance results on a wide range of solvers [4,5]. In the the 2003 competition, over 30 solvers competed on instances selected from thousands of benchmark problems. The papers in this special issue originated at the SAT 2001, the Fourth Inter- national Symposium on the Theory and Applications of Satisfiability Testing. ? A preliminary version of this paper appeared under the title “Ten Challenges Redux : Recent Progress in Propositional Reasoning and Search” in the Proc. of CP-2003, Cork, Ireland, 2003. Preprint submitted to Elsevier Science This foreword reviews the current state of satisfiability testing and places the papers in this issue in context.
    [Show full text]
  • Control and Responsible Innovation in the Development of AI and Robotics
    Control and Responsible Innovation in the Development of AI and Robotics Final Report Edited by Wendell Wallach With contributions from Carla Gomes, Gary Marchant, David Roscoe, Francesca Rossi, Stuart Russell, Bart Selman, and Shannon Vallor Gregory Kaebnick and Isabel Bolo provided editorial assistance with this report. Kenneth Miller provided additional editing assistance. A project of The Hastings Center, supported by funding from the Future of Life Institute ii Table of Contents I. Executive Summary/Recommendations………………………………………..….3 II. Introduction…………………………………………………………………………......5 Background and Project Origin AI Safety and Ethics III. Silo-busting, Collaboration, and Trust……………………………………….……11 AI: Whom Do You Trust? — David Roscoe The Need for Trustworthy AI — Carla Gomes and Bart Selman IV. Addressing Nearer-Term Ethical Challenges versus Longer-Term Approaches to AI Safety…………….………………………………………………24 Value Alignment and Machine Ethics — Shannon Vallor Towards Provably Beneficial AI — Stuart Russell V. Agile and Comprehensive Governance………………………………….................................................................43 An Agile Ethical/Legal Model for the International and National Governance of AI and Robotics — Wendell Wallach and Gary Marchant “Soft Law” Governance of Artificial Intelligence — Gary Marchant VI. Conclusion…………………….……………………………………………………….69 Appendix: Project Participants…………………….……………………………………….73 1 2 Section I. Executive Summary/Recommendations Artificial intelligence (AI) and robotics promise tremendous benefit
    [Show full text]
  • AI MAGAZINE AAAI News
    AAAI News Congratulations to the 2011 AAAI Award Winners! Henry Kautz, AAAI President, and Eric AAAI News Horvitz, AAAI Past President and Awards Committee Chair, presented the AAAI Awards in August at AAAI-11 Fall News from the in San Francisco. Association for the Advancement Classic Paper Award of Artificial Intelligence The 2011 AAAI Classic Paper Award was given to the authors of the most influential papers from the Tenth Na - tional Conference on Artificial Intelli - gence, held in 1992 in San Jose, Cali - fornia. The award was presented to Mitchell received his BSc in cognitive process. The winning papers were se - Hector Levesque, David Mitchell, and science and artificial intelligence at lected by the program chairs with the Bart Selman for their two papers, Hard the University of Toronto, his MSc in help of area chairs and members of the and Easy Distribution of SAT Problems computing science from Simon Fraser senior program committee. Honors and A New Method for Solving Hard University, and his PhD in computer went to Jessica Davies (University of Satisfiability Problems. These papers science from the University of Toron - Toronto), George Katsirelos (LRI, Uni - were honored for their significant con - tributions to the area of automated to. versité Paris Sud 11), Nina Narodytska reasoning via methods and analyses Bart Selman is a professor of com - (NICTA and University of New South on satisfiability, providing founda - puter science at Cornell University. He Wales), and Toby Walsh (NICTA and tional insights about constraint satis - previously was at AT&T Bell Laborato - University of New South Wales) for faction and search.
    [Show full text]
  • Henry A. Kautz, Ph.D. [email protected] (585) 520-1200
    Henry A. Kautz, Ph.D. [email protected] (585) 520-1200 Employment Director Division of Information & Intelligent June 2018–Present Systems, National Science Foundation • Direct the division of NSF Computer and Information Science (CISE) that funds research in artificial intelligence, human-computer interaction, and data science. Appointment to NSF through the Intergovernmental Personnel Act while retaining rank as professor at the University of Rochester. • Manage a $230 million budget and 30 scientific and administrative employees. • Lead National AI Research Institutes program, a partnership with other federal agencies that is funding a series of $20 million centers in foundational and applied artificial intelligence. Work included developing funding partnerships with industry and other government agencies. The program has committed $300 million in funding to date. • Led creation of joint program between CISE and the Directorate for Engineering on Foundations of Robotics. • Co-chair Interagency Working Group on Artificial Intelligence at the Networking and Information Technology Research and Development program. Co-wrote and edited The National Artificial Intelligence Research and Development Strategic Plan: 2019 Update and 2016–2019 Progress Report: Advancing Artificial Intelligence R&D. • Give talks and briefings on the state and future directions of AI research to the National Security Commission, US Army Cybercommand, NASA, Federal Trade Commission, Food & Drug Agency, and other agencies. Director Goergen Institute for Data Science, Oct 2014–May 2018 University of Rochester • Established structure of the Institute, including staffing and formation of Faculty Steering Committee and External Advisory Board. • Designed curriculum for MS and BS in Data Science, working with departments across the university that teach data science courses.
    [Show full text]