Heuristic Evaluation Functions for General Game Playing

Total Page:16

File Type:pdf, Size:1020Kb

Heuristic Evaluation Functions for General Game Playing Heuristic Evaluation Functions for General Game Playing James Clune Department of Computer Science The University of California, Los Angeles [email protected] Abstract a criticism of this work has been that the success of high- performance game-playing programs has come at the ex- A general game playing program plays games that it pense of generality. has not previously encountered. A game manager pro- gram sends the game playing programs a description of The idea of general game playing as a test-bed for AI is a game’s rules and objectives in a well-defined game presented in Barney Pell’s thesis (Pell 1993). Pell submits description language. A central challenge in creating general game playing as a way to preserve the elements that effective general game playing programs is that of con- have made game-playing research attractive to the AI com- structing heuristic evaluation functions from game de- munity, while maintaining generality. He defines a class scriptions. This paper describes a method for construct- of symmetric chess-like games and describes a system that ing evaluation functions that represent exact values of plays games within this class. The system creates heuris- simplified games. The simplified games are abstract tics through the application of metagame-level analysis of models that incorporate the most essential aspects of the the class of games, applying concepts such as mobility, cen- original game, namely payoff, control, and termination. trality, and promotion, automatically specializing these con- Results of applying this method to a sampling of games suggest that heuristic evaluation functions based on our cepts for the particular games. method are both comprehensible and effective. The version that is the focus of the present work is based on the AAAI General Game Playing Competition, organized by Michael Genesereth (Genesereth, Love, & Pell 2005) Introduction and the Game Description Language, or GDL (Genesereth & Love 2005). One of the challenges in automatically con- The idea of general game playing is to create a program that structing heuristic evaluation functions for games from GDL effectively plays games that it has not previously encoun- descriptions is the generality of the language. For exam- tered. A game manager program sends the game playing ple, although the game of chess is describable in GDL (with programs a description of a game in a well-defined game some minor caveats), GDL has no notion of a grid-like board description language. The description specifies the goal of or pieces that move, capture, and promote. Instead, each the game, the legal moves, the initial game state, and the of these concepts are constructed in a game-specific way in termination conditions. The game manager also sends in- first-order logic. This approach forces program authors to formation about what role the program will play (black or implement extremely general game-playing agents. white, naughts or crosses, etc), a start time (time allowed for pre-game analysis), and a move time (time allowed per move The first published work on generating heuristics for GDL once game play begins). The game playing programs com- is (Kuhlmann, Dresner, & Stone 2006). They describe a pete by sending messages over a network indicating their method of creating features from syntactic structures by rec- moves until the game is completed. The class of games cov- ognizing and exploiting relational patterns such as successor ered is intentionally broad, including games of one or more relations and board-like grids. They then perform distributed players with alternating or simultaneous moves, with arbi- search, where each machine uses a single heuristic based on trary numeric payoffs. Our research focus is the automatic either the maximization or the minimization of one of the construction of heuristic evaluation functions that enable a detected features. general game-playing program to win games. Another approach to constructing heuristic evaluation Game playing programs have been of interest to the AI functions for GDL is described in (Schiffel & Thielscher community since the field’s inception because they provide a 2007). Their approach also recognizes structures such as well-defined test-bed for theories of how computational pro- successor relations and grids in game descriptions. Beyond cesses can produce intelligent behavior. Although impres- structure recognition, they utilize fuzzy logic and techniques sive achievements have been made in a number of games, for reasoning about actions to quantify the degree to which a position satisfies the logical description of winning. They Copyright c 2007, Association for the Advancement of Artificial also assess how close the game is to termination, seeking ter- Intelligence (www.aaai.org). All rights reserved. minal states when goals are reached and avoiding terminal 1134 states when goals are not yet attained. composed of expressions consisting of fluents, logical con- The work presented here is part of an ongoing research nectives, a distinguished set of GDL relations, and game- project which has produced general game playing programs specific relations. Here we briefly describe the GDL repre- that have placed first and second in the First and Second sentation of cylinder checkers, omitting the syntax. Annual AAAI General Game Playing Competitions, respec- The role relation lists the roles of the players in the game tively. Algorithms and results presented here reflect the cur- (red and black). The init relation enumerates the set of flu- rent state of the ongoing project. ents true in the initial state of the game. These indicate the The core ideas governing our present approach are the initial board configuration and that red moves first. following. One source of a heuristic evaluation function is The legal relation indicates the legal moves for each role that of an exact solution to simplified version of the original from a given state. The next and does relations are used problem (Pearl 1984). Applying this notion to general game to describe resulting fluents in terms of existing fluents and playing, we abstract the game to its core aspects and com- player’s actions. For example, one rule is that moving a pute the exact value of the simplified game, where the value piece from cell (x, y) results in cell (x, y) being blank. of a game is interpreted as the minimax value as described in The terminal relation is used to indicate termination con- (von Neumann & Morgenstern 1953). Because this simpli- ditions for the game, in this case after 50 moves or when a fied game preserves key characteristics of the original game, player cannot move. The goal relation is used to indicate we use the exact value of the simplified game as an approxi- payoffs for terminal states. A rule says that if black has no mation of the value of the original game. The core aspects of pieces, then the payoffs are 100 for red and 0 for black. the game that we model are the expected payoff, the control (or relative mobility), and the expected game termination (or Identifying Stable Features game longevity). These core game aspects are modeled as When a human first learns the game of checkers, there functions of game-state features. The features must be au- are some obvious metrics that appear relevant to assessing tomatically selected, and the key idea guiding this selection states: the relative cardinalities of regular pieces of each is stability, an intuitive concept for which we will provide color and kings of each color. The more sophisticated player a more technical meaning. Our approach strives to evaluate may consider other factors as well, such as the number of states based on only the most stable features. openings in the back row, degree of center control, or dis- Our approach shares some aspects with previous ap- tance to promotion. We will use the term feature to refer to proaches. Like Kuhlmann, Dresner, & Stone, binary rela- a function from states to numbers that has some relevance tions are extracted from the game description. Like Schiffel to assessing game states. A feature is not necessarily a full & Thielscher, the approach incorporates a measure of degree evaluation function, but features are building-blocks from of goal attainment. Distinguishing aspects of the present which evaluation functions can be constructed. work include the simplified model of the game in terms of Consider the cues that human checkers players exploit payoff, control, and termination, and a particular notion of when learning to evaluate positions. Pieces are represented stability as a key characteristic of relevant features. as physical objects, which have properties of persistence and The remainder of this paper is as follows. We explore mobility that humans have extensive experience with. The an example game, discussing both its representation in GDL coloring of the pieces, the spatial representation of the board, and the game’s analysis. We then present preliminary results and the symmetry of the initial state each leverage strengths of automatically constructed heuristic evaluation functions of the human visual system. The GDL game description, al- for a sampling of board games, and end with discussion. though isomorphic to the physical game, has none of these properties, so feature identification is not so simple. Example: Cylinder Checkers The approach taken here is to extract expressions that ap- We illustrate GDL and a technique for constructing heuristic pear in the game description and impose interpretations on evaluation functions with a checkers variant called cylinder these expressions to construct candidate features. There are checkers. The game was introduced in the Second Annual two aspects to this: identifying a set of potentially interest- AAAI General Game Playing Competition. The primary ing candidate expressions and imposing interpretations on difference from traditional checkers is that the playing board these expressions. To identify the set of candidate expres- has a topology in which the sides wrap around to form a sions, the analyzer starts by simply scanning the game de- cylinder.
Recommended publications
  • AAAI 2008 Workshop Reports
    University of Pennsylvania ScholarlyCommons Technical Reports (CIS) Department of Computer & Information Science 5-2009 AAAI 2008 Workshop Reports Mark Dredze University of Pennsylvania, [email protected] Follow this and additional works at: https://repository.upenn.edu/cis_reports Recommended Citation Mark Dredze, "AAAI 2008 Workshop Reports", . May 2009. Sarabjot Singh Anand, Razvan Bunescu, Vitor Carvalho, Jan Chomicki, Vincent Conitzer, Michael T Cox, Virginia Dignum, Zachary Dodds, Mark Dredze, David Furcy, Evgeniy Gabrilovich, Mehmet H Göker, Hans Guesgen, Haym Hirsh, Dietmar Jannach, Ulrich Junker. (2009, April). AAAI 2008 Workshop Reports. AI Magazine, 30(1), 108-118. Copyright AAAI 2009. The copies do not imply AAAI endorsement of a product or a service of the employer, and that the copies are not for sale. Publisher URL: http://proquest.umi.com/ pqdlink?did=1680350011&sid=1&Fmt=2&clientId=3748&RQT=309&VName=PQD This paper is posted at ScholarlyCommons. https://repository.upenn.edu/cis_reports/904 For more information, please contact [email protected]. AAAI 2008 Workshop Reports Abstract AAAI was pleased to present the AAAI-08 Workshop Program, held Sunday and Monday, July 13-14, in Chicago, Illinois, USA. The program included the following 15 workshops: Advancements in POMDP Solvers; AI Education Workshop Colloquium; Coordination, Organizations, Institutions, and Norms in Agent Systems, Enhanced Messaging; Human Implications of Human-Robot Interaction; Intelligent Techniques for Web Personalization and Recommender Systems; Metareasoning: Thinking about Thinking; Multidisciplinary Workshop on Advances in Preference Handling; Search in Artificial Intelligence and Robotics; Spatial and Temporal Reasoning; Trading Agent Design and Analysis; Transfer Learning for Complex Tasks; What Went Wrong and Why: Lessons from AI Research and Applications; and Wikipedia and Artificial Intelligence: An vE olving Synergy.
    [Show full text]
  • The Founder of the Creative Destruction Lab Describes Its Moonshot Mission to Create a Canadian AI Ecosystem
    The founder of the Creative Destruction Lab describes its moonshot mission to create a Canadian AI ecosystem. Thought Leader Interview: by Karen Christensen Describe what happens at the Creative Destruction Lab by companies that went through the Lab. When we finished our (CDL). fifth year in June 2017, we had exceeded $1.4 billion in equity The CDL is a seed-stage program for massively scalable science- value created. based companies. Some start-ups come from the University of Toronto community, but we now also receive applications from What exactly does the Lab provide to entrepreneurs? Europe, the U.S. (including Silicon Valley), Israel and Asia. Start-up founders benefit from a structured, objectives-oriented We launched the program in September 2012, and each process that increases their probability of success. The process is autumn since, we’ve admitted a new cohort of start-ups into orchestrated by the CDL team, while CDL Fellows and Associ- the program. Most companies that we admit have developed a ates generate the objectives. Objective-setting is a cornerstone working prototype or proof of concept. The most common type of the process. Every eight weeks the Fellows and Associates set of founder is a recently graduated PhD in Engineering or Com- three objectives for the start-ups to achieve, at the exclusion of puter Science who has spent several years working on a problem everything else. In other words, they define clear goals for an and has invented something at the frontier of their field. eight week ‘sprint’. Objectives can be business, technnology or The program does not guarantee financing, but the majority HR-oriented.
    [Show full text]
  • A Strategic Metagame Player for General Chesslike Games
    From: AAAI Technical Report FS-93-02. Compilation copyright © 1993, AAAI (www.aaai.org). All rights reserved. A Strategic Metagame Player for General Chess-Like Games Barney Pell* Computer Laboratory University of Cambridge Cambridge, CB2 3QG, UK b dp((~cl c am. ac Abstract game will transfer also to new games. Such criteria in- clude the use of learning and planning, and the ability This paper reviews the concept of Metagameand to play more than one game. discusses the implelnentation of METAGAMER,a program which plays Metagame in the class of 1.1 Bias when using Existing Games symmetric chess-like games, which includes chess, However,even this generality-oriented research is sub- Chinese-chess, checkers, draughts, and Shogi. The ject to a potential methodological bias. As the human l)rogram takes as input the rules of a specific game researchers know at the time of program-development and analyses those rules to construct for that game which specific game or games the program will be tested an efficient representation and an evaluation func- on, it is possible that they import the results of their tion, both for use with a generic search engine. The own understanding of the game dh’ectly into their pro- strategic analysis performed by the program relates gn’am. In this case, it becomes difficult to determine a set of general knowledgesources to the details of whether the subsequent performance of the program the particular game. Amongother properties, this is due to the general theory it implements, or merely analysis determines the relative value of the differ- to the insightful observations of its developer about the eat pieces in a given game.
    [Show full text]
  • Lukas Biewald
    Lukas Biewald 823 Capp St., San Francisco, CA 94110 (650) 804 5470 lukas@crowdflower.com Awards Netexplorateur of the Year http://www.netexplorateur.org/ (2010) TechCrunch 50 http://techcrunch50.com (2009) First Place, Caltech Turing Tournament http://turing.ssel.caltech.edu Work Founder, CEO: CrowdFlower 2008 — Present • Built leading Labor-on-Demand company from the ground up. Designed and coded core technology. Built customer base up from nothing to 100 customers including several Fortune-500 companies. Hired 25 employees. • Raised two rounds of financing totalling $6.2 million in 2009 in tough economic climate from well-known angels and VCs including Trinity, Bessemer, Founders´ Fund, Auren Hoffman, Aydin Senkut, Manu Kumar, Gary Kremen and Travis Kalanick. Senior Scientist: Powerset 2007 — 2008 • As the 20th employee, created and led two core teams: metrics and search ranking. • Developed the Amazon Mechanical Turk interface, identified as a key technology in Microsoft’s $100 million acquisition. Relevance Engineer, Engineering Manager: Yahoo! Inc. 2005 — 2007 • Technical lead for research, development and deployment of new web search ranking functions in five major markets. • Chosen as most productive employee in Applied Science business unit year end review. Research Assistant: Stanford AI Lab (sail.stanford.edu) 2003 — 2004 • Researched word-sense disambiguation, machine translation and Japanese word segmentation. • Published two papers with over 100 citations. Education Stanford University 1998 — 2004 BS in Mathematical and Computational Science with Honors (2003) MS in Computer Science with Concentration in Artificial Intelligence (2004) Publications David Vickrey, Lukas Biewald, Marc Teyssier, and Daphne Koller Word-Sense Disambiguation for Machine Translation. Conference on Empirical Methods in Natural Language Processing (EMNLP), 2005.
    [Show full text]
  • Autonomous Horizons: the Way Forward Is a Product of the Office Air University Press 600 Chennault Circle, Bldg 1405 of the US Air Force Chief Scientist (AF/ST)
    Autonomous Horizons The Way Forward A vision for Air Force senior leaders of the potential for autonomous systems, and a general framework for the science and technology community to advance the state of the art Dr. Greg L. Zacharias Chief Scientist of the United States Air Force 2015–2018 The second volume in a series introduced by: Autonomous Horizons: Autonomy in the Air Force – A Path to the Future, Volume 1: Human Autonomy Teaming (AF/ST TR 15-01) March 2019 Air University Press Curtis E. LeMay Center for Doctrine Development and Education Maxwell AFB, Alabama Chief of Staff, US Air Force Library of Congress Cataloging-in-Publication Data Gen David L. Goldfein Names: Zacharias, Greg, author. | Air University (U.S.). Press, publisher. Commander, Air Education and Training | United States. Department of Defense. United States Air Force. Command Title: Autonomous horizons : the way forward / by Dr. Greg L. Zacha- Lt Gen Steven L. Kwast rias. Description: First edition. | Maxwell Air Force Base, AL : AU Press, 2019. “Chief Scientist for the United States Air Force.” | Commander and President, Air University Lt Gen Anthony J. Cotton “January 2019.” |Includes bibliographical references. Identifiers: LCCN 2018061682 | ISBN 9781585662876 Commander, Curtis E. LeMay Center for Subjects: LCSH: Aeronautics, Military—Research—United States. | Doctrine Development and Education United States. Air Force—Automation. | Artificial intelligence— Maj Gen Michael D. Rothstein Military applications—United States. | Intelligent control systems. | Autonomic
    [Show full text]
  • The Semantic
    The Fate of the Semantic Web Technology experts and stakeholders who participated in a recent survey believe online information will continue to be organized and made accessible in smarter and more useful ways in coming years, but there is stark dispute about whether the improvements will match the visionary ideals of those who are working to build the semantic web. Janna Quitney Anderson, Elon University Lee Rainie, Pew Research Center’s Internet & American Life Project May 4, 2010 Pew Research Center’s Internet & American Life Project An initiative of the Pew Research Center 1615 L St., NW – Suite 700 Washington, D.C. 20036 202‐419‐4500 | pewInternet.org This publication is part of a Pew Research Center series that captures people’s expectations for the future of the Internet, in the process presenting a snapshot of current attitudes. Find out more at: http://www.pewInternet.org/topics/Future‐of‐the‐Internet.aspx and http://www.imaginingtheinternet.org. 1 Overview Sir Tim Berners‐Lee, the inventor of the World Wide Web, has worked along with many others in the Internet community for more than a decade to achieve his next big dream: the semantic web. His vision is a web that allows software agents to carry out sophisticated tasks for users, making meaningful connections between bits of information so “computers can perform more of the tedious work involved in finding, combining, and acting upon information on the web.”1 The concept of the semantic web has been fluid and evolving and never quite found a concrete expression and easily‐understood application that could be grasped readily by ordinary Internet users.
    [Show full text]
  • Heuristic Evaluation Functions for General Game Playing
    University of California Los Angeles Heuristic Evaluation Functions for General Game Playing A dissertation submitted in partial satisfaction of the requirements for the degree Doctor of Philosophy in Computer Science by James Edmond Clune III 2008 c Copyright by James Edmond Clune III 2008 The dissertation of James Edmond Clune III is approved. Adnan Y. Darwiche Thomas S. Ferguson Alan C. Kay Todd D. Millstein Richard E. Korf, Committee Chair University of California, Los Angeles 2008 ii Table of Contents 1 Introduction ................................ 1 1.1 General Game Playing: The Problem . 1 1.2 The Importance of General Game Playing . 2 1.2.1 Competitive Performance Metric . 2 1.2.2 Flexible Software Capabilities . 3 1.2.3 Game-Oriented Programming . 3 1.2.4 Generality as a Key Aspect of Intelligence . 4 1.2.5 A Timely Problem . 4 1.3 Overview of the Project . 5 1.4 Overview of the Dissertation . 6 2 Philosophy and Vision ......................... 8 2.1 The Ubiquity of Game Models . 8 2.2 Game-Oriented Programming . 10 3 Literature Review ............................ 13 3.1 General Game Playing . 13 3.1.1 Barney Pell’s Metagamer . 13 3.1.2 AAAI General Game Playing Competition . 14 3.1.3 Other General Game Playing Systems . 15 3.2 Automated Planning . 16 3.2.1 Classical Planning . 16 iii 3.2.2 International Planning Competition . 17 3.2.3 Planning Techniques . 18 3.3 Discovery Systems . 20 3.3.1 Feature Discovery . 20 3.3.2 AM and Eurisko . 21 3.3.3 Learning Heuristic Evaluation Functions . 23 4 General Game Playing Framework .................
    [Show full text]
  • Will Impact Higher Education WEB
    Foroughi Web 3.0: How “the Internet of Everything” will impact Higher Education WEB 3.0: HOW THE “INTERNET OF EVERYTHING” WILL IMPACT HIGHER EDUCATION Abbas Foroughi College of Business, University of Southern Indiana [email protected] 812-465-1667 ABSTRACT Universities are finding that adopting Web 2.0 is necessary to remain competitive, while, at the same time, the evolution to Web 3.0 is on the horizon. This paper discusses Web 3.0, how it builds on Web 2.0, examples of current applications of Web 3.0, the potential benefits for higher education and lifelong learning which experts predict from Web 3.0 and concerns that have also been voiced. INTRODUCTION Over the past two decades, many institutions of higher learning and their students have reaped benefits from using Web 2.0 tools such as Wikis, Facebook, blogs, tagging, LinkedIn, virtual reality, social bookmarking, mashing, rss, podcasts, folksonomies, ePortfolios, chatrooms, and similar technologies, which facilitate communication, give participants a feeling of group membership, and are user-friendly. Specific benefits include: learning-related benefits: (Anderson, 2007; Alexander, 2006; Wesch, 2009; Reuben, 2008; McDonald, 2009; Brainard, 2007; Thompson, 2008; Minocha, 2009), such as facilitation of collaborative learning, development of independent learning skills, problem solving, team work, reflective learning, quick/early feedback from instructors, overcoming isolation of geographical distances, peer-to- peer support/feedback, visibility of students’ work, integration of multimedia assets, and the creation of informal relations between educators and students. Universities are finding that adopting Web 2.0 is necessary to remain competitive, while, at the same time, the evolution to Web 3.0 is on the horizon.
    [Show full text]
  • Lorien Pratt, Ph.D. Curriculum Vita
    Lorien Pratt, Ph.D. Curriculum Vita Sunnyvale, CA USA +1.303.589.7476 [email protected] Blog: www.lorienpratt.com SUMMARY Professional machine learning and decision intelligence consultant, developer, entrepreneur, writer, evangelist. Author of Link: How Decision Intelligence Connects Data, Actions, and Outcomes for a Better World. Co-organizer of the annual Responsible AI/DI Summit. Two TEDx talks. Inventor of machine learning inductive transfer. Co-Founder and Chief Scientist of Quantellia, LLC. Co-inventor and evangelist for Decision Intelligence. Over three decades delivering applied machine learning solutions, including for the Human Genome Project, the US Department of Energy, budget analysis for a $100 million annual spend for the Administrative Office (AO) of the US Courts, award-winning forensic analysis for the Colorado Bureau of Investigation, RBS, DARPA, and many more. EDUCATION Ph.D., Computer Science, Rutgers University, 5/93. Thesis: Transferring previously learned back-propagation neural networks to new learning tasks. M.S., Computer Science, Rutgers University, 5/88. A.B., Computer Science, Dartmouth College, 5/83. CONSULTING A variety of engagements including the following: Regular invited speaker to user groups, executive roundtables, keynotes, webinars, and workshops for organizations and companies like SAP, HP, Unisys, the TM Forum, Comptel, SAS. Machine learning consulting on a wide variety of projects for cyber security, web advertising, financial prediction, medical decision making, cable company capital expenditure, LIDAR image analysis, and more. Five-star rated consultant on the Experfy platform (www.experfy.com), from the Harvard Innovation Laboratory. Strategic consulting in decision intelligence, analytics, and telecom OSS/BSS to companies and organizations like the US Department of Defense, Solvina, ConceptWave, the Colorado Bureau of Investigation (CBI), Sun, IBM, Comptel, SAP, HP, Amdocs, Telcordia (now Ericsson).
    [Show full text]
  • Knowledge-Based General Game Playing
    Knowledge-Based General Game Playing Dissertation zur Erlangung des akademischen Grades Doktor rerum naturalium (Dr. rer. nat.) vorgelegt an der Technischen Universitat¨ Dresden Fakultat¨ Informatik eingereicht von Dipl.-Inf. Stephan Schiffel geboren am 15. 09. 1980 in Sebnitz Gutachter: Prof. Michael Thielscher, University of New South Wales Prof. Yngvi Bj¨ornsson, H´ask´olinn´ıReykjav´ık Datum der Verteidigung: 29.07.2011 Abstract General Game Playing (GGP) is concerned with the development of systems that can play well an arbitrary game solely by being given the rules of the game. This problem is considerably harder than traditional artificial intelligence (AI) game playing. Writing a player for a particular game allows to focus on the design of elaborate strategies and libraries that are specific to this game. Systems able to play arbitrary, previously unknown games cannot be given game-specific knowledge. They rather need to be endowed with high-level cognitive abilities such as general strategic thinking and abstract reasoning. This makes General Game Playing a good example of a challenge problem, which encompasses a variety of AI research areas including knowledge representation and reasoning, heuristic search, planning, and learning. Two fundamentally different approaches to GGP exist today, we call them knowledge-free and knowledge-based approach. The knowledge-free approach considers the game rules as a black box used for generating legal moves and successor states of the game. Players using this approach run Monte-Carlo simulations of the game to estimate the value of states of the game. On the other hand, the knowledge-based approach considers the components of a state (e.
    [Show full text]
  • Ary, a General Game Playing Program
    Ary, a general game playing program Jean M´ehat,Tristan Cazenave Abstract We present our program Ary that won the 2009 and 2010 General Game Playing competition. In General Game Playing (GGP), players have to play games they never encountered before. The rules are trans- mitted as a description in a specific language and the player have to au- tomatically analyse the rules and select a method of playing. 1 Introduction The field of program playing games is an extensively explored field of computer science and more particularly of artificial intelligence as it is a domain where common methods of reasonning are to be applied, while offering a closed world, completely described by the game rules. Moreover the quality of the play is easy to evaluate quantitatively by observing the matches outcomes, and a human expertise has been developped. Great successes have been obtained: in many games, including chess, programs routinely outplay even the best human player. The program usually embed a important body of knowledge that is specific of the game they play. This knowledge is used by the designer beforehand and limit somewhat the generality of the program. While a program like Deep Blue is able to play well chess, it can not play a match of Checker, or even Tic Tac Toe: while an expert in its domain, the playing program is limited to one game in its abilities, and these are not easily extended to other domains or even to other games. The Logic Group at the university of Stanford addresses this limitation with GGP. In a GGP match, the players receive the rules of the game they have to play in a specific langage called Game Description Language from a Game Master.
    [Show full text]
  • Barney Pell WSDM 2017 Conference Handout
    Crucial Questions for Applying AI in Startups Barney Pell, Ph.D. Founder: Powerset, Moon Express, LocoMobi Associate Founder: Singularity University Fellow: Creative Disruption Lab Advisor: CrowdFlower, Uber/Otto, LinkedIn, … [email protected] @barneyp My background • I'm a long-time technologist, entrepreneur, investor and advisor • Specialty and passion for applications of Artificial Intelligence (AI) • SRI • NASA • Powerset • Microsoft (Bing, Cortana) • Singularity University • Creative Disruption Lab • Participated in hundreds of AI application efforts! Challenges for Startups Applying AI • AI technology is advancing rapidly • But: Applying AI successfully is hard, with many issues leading to failure • Art of the application is harder than the technology, and less understood • Needs of the application often drive (new) requirements on technology • Opportunity: • Ask the key questions early on can dramatically increase chances of success. • May also lead to different design and approach AI Goldilocks Zone Our opportunity Customers need We can do AI Goldilocks Zone Alternatives Others can do Customers need We can do AI Goldilocks Zone Too easy Others can do Customers need Just right We can do Too hard Goldilocks Zone Questions • Who are the target customers? Which is our best market segment? • Which of their problems or needs are An AI Start-up should the most important ones we are offer a solution to planning to address? real customer needs that actually works • How well do our capabilities align and is much better with the core
    [Show full text]