Order-Planning Neural Text Generation from Structured Data

Size: px
Start display at page:

Download "Order-Planning Neural Text Generation from Structured Data"

Transcription

1 Order-Planning Neural Text Generation from Structured Data Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Sujian Li, Baobao Chang, Zhifang Sui Institute of Computational Linguistics, Peking University David R. Cheriton School of Computer Science, University of Waterloo February 5, 2018 Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, DataFebruary Peking University) 5, / 23

2 Table of Contents 1 Introduction 2 Generating Text from Structured Data 3 Experiments 4 Conclusion Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, DataFebruary Peking University) 5, / 23

3 Table of Contents 1 Introduction 2 Generating Text from Structured Data 3 Experiments 4 Conclusion Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, DataFebruary Peking University) 5, / 23

4 Table-to-Text Brief Summary Generation A table can be a list of RBF tuples: John E Blaha birthdate 1942,08,26 John E Blaha birthplace San Antonio John E Blaha occupation Fighter pilot San Antonio located in USA Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, DataFebruary Peking University) 5, / 23

5 Table-to-Text Brief Summary Generation A table can be also a list of attributes (like Wiki infobox): Figure: An example of Wikipedia infobox. Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, DataFebruary Peking University) 5, / 23

6 Table-to-Text Brief Summary Generation Generate brief summary from structured data is useful In the last step of QA system, Table-to-text is used to generate answer. Question Question Analysis Search from KB User Answer Text Table Answer Generation Figure: Table-to-text in question answering system. Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, DataFebruary Peking University) 5, / 23

7 Table-to-Text Brief Summary Generation Table-to-text can also be used to generate response in dialogue system Slot extraction Intent tracking State tracking Search KB Table to Text Generator Slot extraction Intent tracking State tracking Search KB Table to Text Generator Figure: Table-to-text in dialogue system. Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, DataFebruary Peking University) 5, / 23

8 Table of Contents 1 Introduction 2 Generating Text from Structured Data 3 Experiments 4 Conclusion Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, DataFebruary Peking University) 5, / 23

9 Table-to-Text Brief Summary Generation We generate brief summary for wikipedia infobox Sir Arthur Ignatius Conan Doyle (22 May July 1930) was a British writer best known for his detective fiction featuring the character Sherlock Holmes. Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, DataFebruary Peking University) 5, / 23

10 Table-to-Text Brief Summary Generation Motivation: Traditional: language model based generator Use probability of word-by-word: P(w t w t 1 ) Different from human s generation process Human: first plan for order, then write Use probability of field-by-field: P(f t f t 1 ) We propose to add human nature into machine learning models Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, Data Peking February University) 5, / 23

11 Table-to-Text Brief Summary Generation In our work, we use the attention mechanism to assist the generation process Content-based attention Use the last output word y t 1 to predict the importance of each table content for the next output. Link-based attention See which field we are going to generate this time. Hybrid attention Combine content-based and link-based attention together. Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, Data Peking February University) 5, / 23

12 Table-to-Text Brief Summary Generation How to build field-by-field probability (P(f t f t 1 ))? The element in the i-th row and j-th column is the probability of field j occurs after field i Figure: Field-by-field probability matrix (Link matrix). Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, Data Peking February University) 5, / 23

13 Table-to-Text Brief Summary Generation However,... We have more than 1400 different fields in our dataset To tune a full field-by-field matrix each time is expensive So, We extract link sub-matrix for each input example. Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, Data Peking February University) 5, / 23

14 Table-to-Text Brief Summary Generation How to build link sub-matrix? Name Born Occupation Nationality Name Born Occupation Nationality Link matrix Link sub-matrix Figure: The process of select link sub-matrix. Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, Data Peking February University) 5, / 23

15 LSTM Table-to-Text Brief Summary Generation We calculate the hybrid attention as follows: (a) Encoder: Table Representation (b) Dispatcher: Planning What to Generate Next Field Content Name Arthur Name Ignatius Name Conan Name Doyle Born 22 Born May Born 1859 Occupation writer Occupation physician Nationality British Content-based attention Weighted sum Attention vector Hybrid attention Last step's attention = Link (sub)matrix Link-based attention Figure: Illustration of content-based attention and link-based attention. Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, Data Peking February University) 5, / 23

16 Table-to-Text Brief Summary Generation Then we generate text according to the hybrid attention: <eos> LSTM LSTM... LSTM... LSTM <start> Table content Last LSTM state LSTM Embedding of the generated word in last step Attention vector Figure: The decoder in our model, which is incorporated with a copying mechanism. Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, Data Peking February University) 5, / 23

17 Table of Contents 1 Introduction 2 Generating Text from Structured Data 3 Experiments 4 Conclusion Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, Data Peking February University) 5, / 23

18 Experiments Overall performance of our model: Figure: Comparison of the overall performance between our model and previous methods. l Best results in Lebret, Grangier, and Auli (2016). Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, Data Peking February University) 5, / 23

19 Experiments Simple case study: Figure: Case study. Left: Wikipedia infobox. Right: A reference and two generated sentences by different attention (both with the copy mechanism). Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, Data Peking February University) 5, / 23

20 Experiments Visualization of attention probabilities in our model. x-axis: generated words...) was an american economist... ; y-axis: field : content word pairs in the table. death place:united death place:states nationality:american occupation:governor occupation:of occupation:the occupation:federal occupation:reserve occupation:system occupation:, occupation:economics occupation:professor known for:expert (a) α content (b) α link (c) α hybrid ) was an american economist ) was an american economist ) was an american economist Figure: Subplot (b) exhibits strips because, by definition, link-based attention will yield the same score for all content words with the same field. Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, Data Peking February University) 5, / 23

21 Table of Contents 1 Introduction 2 Generating Text from Structured Data 3 Experiments 4 Conclusion Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, Data Peking February University) 5, / 23

22 Conclusion We propose to add human nature, namely, the field-by-field generation method to neural network models. We propose the link-based attention mechanism to model the generate order of the fields We conduct a series of experiments and ablation tests to prove our model s effectiveness Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, Data Peking February University) 5, / 23

23 Thank you. Any questions? Lei Sha, Lili Mou, Tianyu Liu, Pascal Poupart, Order-Planning Sujian Li, Neural Baobao Text Chang, Generation Zhifang from Structured Sui (ICL, Data Peking February University) 5, / 23

Deep Neural Networks [GBC] Chap. 6, 7, 8. CS 486/686 University of Waterloo Lecture 18: June 28, 2017

Deep Neural Networks [GBC] Chap. 6, 7, 8. CS 486/686 University of Waterloo Lecture 18: June 28, 2017 Deep Neural Networks [GBC] Chap. 6, 7, 8 CS 486/686 University of Waterloo Lecture 18: June 28, 2017 Outline Deep Neural Networks Gradient Vanishing Rectified linear units Overfitting Dropout Breakthroughs

More information

Question Answering. CS486 / 686 University of Waterloo Lecture 23: April 1 st, CS486/686 Slides (c) 2014 P. Poupart 1

Question Answering. CS486 / 686 University of Waterloo Lecture 23: April 1 st, CS486/686 Slides (c) 2014 P. Poupart 1 Question Answering CS486 / 686 University of Waterloo Lecture 23: April 1 st, 2014 CS486/686 Slides (c) 2014 P. Poupart 1 Question Answering Extension to search engines CS486/686 Slides (c) 2014 P. Poupart

More information

Prioritizing Issues in Islamic Economics and Finance

Prioritizing Issues in Islamic Economics and Finance Middle-East Journal of Scientific Research 15 (11): 1594-1598, 2013 ISSN 1990-9233 IDOSI Publications, 2013 DOI: 10.5829/idosi.mejsr.2013.15.11.11658 Prioritizing Issues in Islamic Economics and Finance

More information

Identifying Anaphoric and Non- Anaphoric Noun Phrases to Improve Coreference Resolution

Identifying Anaphoric and Non- Anaphoric Noun Phrases to Improve Coreference Resolution Identifying Anaphoric and Non- Anaphoric Noun Phrases to Improve Coreference Resolution Vincent Ng Ng and Claire Cardie Department of of Computer Science Cornell University Plan for the Talk Noun phrase

More information

Teller Of Tales: The Life Of Arthur Conan Doyle By Daniel Stashower READ ONLINE

Teller Of Tales: The Life Of Arthur Conan Doyle By Daniel Stashower READ ONLINE Teller Of Tales: The Life Of Arthur Conan Doyle By Daniel Stashower READ ONLINE AbeBooks.com: Teller of Tales: The Life of Arthur Conan Doyle (9780805050745) by Daniel Stashower and a great selection of

More information

COS 226 Algorithms and Data Structures Fall Midterm

COS 226 Algorithms and Data Structures Fall Midterm COS 226 Algorithms and Data Structures Fall 2005 Midterm This test has 6 questions worth a total of 50 points. You have 80 minutes. The exam is closed book, except that you are allowed to use a one page

More information

Artificial Intelligence: Valid Arguments and Proof Systems. Prof. Deepak Khemani. Department of Computer Science and Engineering

Artificial Intelligence: Valid Arguments and Proof Systems. Prof. Deepak Khemani. Department of Computer Science and Engineering Artificial Intelligence: Valid Arguments and Proof Systems Prof. Deepak Khemani Department of Computer Science and Engineering Indian Institute of Technology, Madras Module 02 Lecture - 03 So in the last

More information

Investing: The Last Liberal Art

Investing: The Last Liberal Art Investing: The Last Liberal Art Gabelli Center for Global Investment Analysis November 13, 2013 Robert G. Hagstrom, CFA Chief Investment Strategist Charlie Munger If you want to be a good thinker, you

More information

A Scientific Model Explains Spirituality and Nonduality

A Scientific Model Explains Spirituality and Nonduality A Scientific Model Explains Spirituality and Nonduality Frank Heile, Ph.D. Physics degrees from Stanford and MIT frank@spiritualityexplained.com www.spiritualityexplained.com Science and Nonduality Conference

More information

Gesture recognition with Kinect. Joakim Larsson

Gesture recognition with Kinect. Joakim Larsson Gesture recognition with Kinect Joakim Larsson Outline Task description Kinect description AdaBoost Building a database Evaluation Task Description The task was to implement gesture detection for some

More information

NPTEL NPTEL ONINE CERTIFICATION COURSE. Introduction to Machine Learning. Lecture-59 Ensemble Methods- Bagging,Committee Machines and Stacking

NPTEL NPTEL ONINE CERTIFICATION COURSE. Introduction to Machine Learning. Lecture-59 Ensemble Methods- Bagging,Committee Machines and Stacking NPTEL NPTEL ONINE CERTIFICATION COURSE Introduction to Machine Learning Lecture-59 Ensemble Methods- Bagging,Committee Machines and Stacking Prof. Balaraman Ravindran Computer Science and Engineering Indian

More information

Entailment as Plural Modal Anaphora

Entailment as Plural Modal Anaphora Entailment as Plural Modal Anaphora Adrian Brasoveanu SURGE 09/08/2005 I. Introduction. Meaning vs. Content. The Partee marble examples: - (1 1 ) and (2 1 ): different meanings (different anaphora licensing

More information

Torah Code Cluster Probabilities

Torah Code Cluster Probabilities Torah Code Cluster Probabilities Robert M. Haralick Computer Science Graduate Center City University of New York 365 Fifth Avenue New York, NY 006 haralick@netscape.net Introduction In this note we analyze

More information

How to Study the Bible, Part 2

How to Study the Bible, Part 2 How to Study the Bible, Part 2 2017-02-23 at SGC Review - Observation 15 minutes 1. The Fish story (6 minutes) 2. Review homework from 1 Corinthians 13 3. Tools & Tips for making observations - Pen and

More information

Visual Analytics Based Authorship Discrimination Using Gaussian Mixture Models and Self Organising Maps: Application on Quran and Hadith

Visual Analytics Based Authorship Discrimination Using Gaussian Mixture Models and Self Organising Maps: Application on Quran and Hadith Visual Analytics Based Authorship Discrimination Using Gaussian Mixture Models and Self Organising Maps: Application on Quran and Hadith Halim Sayoud (&) USTHB University, Algiers, Algeria halim.sayoud@uni.de,

More information

The nature of consciousness underlying existence William C. Treurniet and Paul Hamden, July, 2018

The nature of consciousness underlying existence William C. Treurniet and Paul Hamden, July, 2018 !1 The nature of consciousness underlying existence William C. Treurniet and Paul Hamden, July, 2018 Summary. During conversations with beings from the Zeta race, they expressed their understanding of

More information

Document-level context in deep recurrent neural networks

Document-level context in deep recurrent neural networks Institute of Computational Linguistics Document-level context in deep recurrent neural networks Kolloquium Talk 2017 Mathias Müller 10/30/17 KOLLO, Mathias Müller On the menu today Establish that document-level

More information

THE GREAT DETOUR. John Perry. June 22, 2016 Institut Jean Nicod Paris

THE GREAT DETOUR. John Perry. June 22, 2016 Institut Jean Nicod Paris June 22, 2016 Institut Jean Nicod Paris Lecture 3 How About That-clauses? 1. Reviewing The Basic Idea: U(tterance) Conditions (1) Trump loses the election. (1) is an utterance of an English sentence of

More information

Universitas Saraviensis Project Seminar Text Mining for Historical Documents Antonia Scheidel February An Introduction To Ontologies

Universitas Saraviensis Project Seminar Text Mining for Historical Documents Antonia Scheidel February An Introduction To Ontologies Universitas Saraviensis Project Seminar Text Mining for Historical Documents Antonia Scheidel February 2009 An Introduction To Ontologies 31 What are Ontologies? What do they look like? How can they be

More information

Knowledge, Language, and Nonexistent Entities

Knowledge, Language, and Nonexistent Entities Acta Cogitata Volume 2 Article 3 Alex Hoffman Huntington University Follow this and additional works at: http://commons.emich.edu/ac Part of the Philosophy Commons Recommended Citation Hoffman, Alex ()

More information

Houghton Mifflin MATHEMATICS

Houghton Mifflin MATHEMATICS 2002 for Mathematics Assessment NUMBER/COMPUTATION Concepts Students will describe properties of, give examples of, and apply to real-world or mathematical situations: MA-E-1.1.1 Whole numbers (0 to 100,000,000),

More information

Information Extraction. CS6200 Information Retrieval (and a sort of advertisement for NLP in the spring)

Information Extraction. CS6200 Information Retrieval (and a sort of advertisement for NLP in the spring) Information Extraction CS6200 Information Retrieval (and a sort of advertisement for NLP in the spring) Information Extraction Automatically extract structure from text annotate document using tags to

More information

Functionalism and the Chinese Room. Minds as Programs

Functionalism and the Chinese Room. Minds as Programs Functionalism and the Chinese Room Minds as Programs Three Topics Motivating Functionalism The Chinese Room Example Extracting an Argument Motivating Functionalism Born of failure, to wit the failures

More information

Noun Compound Interpretation

Noun Compound Interpretation Noun Compound Interpretation by Girishkumar Ponkiya Supervisor: Prof. Pushpak Bhattacharyya Co-supervisor: Mr. Girish K Palshikar (TRDDC, Pune) June 21, 2015 Outlines Introduction Problem Definition Two

More information

Inimitable Human Intelligence and The Truth on Morality. to life, such as 3D projectors and flying cars. In fairy tales, magical spells are cast to

Inimitable Human Intelligence and The Truth on Morality. to life, such as 3D projectors and flying cars. In fairy tales, magical spells are cast to 1 Inimitable Human Intelligence and The Truth on Morality Less than two decades ago, Hollywood films brought unimaginable modern creations to life, such as 3D projectors and flying cars. In fairy tales,

More information

From Machines To The First Person

From Machines To The First Person From Machines To The First Person Tianxiao Shen When I think of the puzzling features of our use of the first person, I start to consider whether similar problems will arise in building machines. To me

More information

TEXT MINING TECHNIQUES RORY DUTHIE

TEXT MINING TECHNIQUES RORY DUTHIE TEXT MINING TECHNIQUES RORY DUTHIE OUTLINE Example text to extract information. Techniques which can be used to extract that information. Libraries How to measure accuracy. EXAMPLE TEXT Mr. Jack Ashley

More information

CS224W Project Proposal: Characterizing and Predicting Dogmatic Networks

CS224W Project Proposal: Characterizing and Predicting Dogmatic Networks CS224W Project Proposal: Characterizing and Predicting Dogmatic Networks Emily Alsentzer, Shirbi Ish-Shalom, Jonas Kemp 1. Introduction Increasing polarization has been a defining feature of the 21st century.

More information

Tests of Homogeneity and Independence

Tests of Homogeneity and Independence Tests of Homogeneity and Independence Lecture 52 Sections 14.5 Robb T. Koether Hampden-Sydney College Mon, Apr 26, 2010 Robb T. Koether (Hampden-Sydney College) Tests of Homogeneity and Independence Mon,

More information

Review: The Objects of Thought, by Tim Crane. Guy Longworth University of Warwick

Review: The Objects of Thought, by Tim Crane. Guy Longworth University of Warwick Review: The Objects of Thought, by Tim Crane. Guy Longworth University of Warwick 24.4.14 We can think about things that don t exist. For example, we can think about Pegasus, and Pegasus doesn t exist.

More information

Practical English: Learning and Teaching Prof. Bhaskar Dasgupta Department of Mechanical Engineering Indian Institute of Technology, Kanpur

Practical English: Learning and Teaching Prof. Bhaskar Dasgupta Department of Mechanical Engineering Indian Institute of Technology, Kanpur Practical English: Learning and Teaching Prof. Bhaskar Dasgupta Department of Mechanical Engineering Indian Institute of Technology, Kanpur (Refer Slide Time: 00:09) Lecture 33 Good morning. (Refer Slide

More information

QCAA Study of Religion 2019 v1.1 General Senior Syllabus

QCAA Study of Religion 2019 v1.1 General Senior Syllabus QCAA Study of Religion 2019 v1.1 General Senior Syllabus Considerations supporting the development of Learning Intentions, Success Criteria, Feedback & Reporting Where are Syllabus objectives taught (in

More information

INTRODUCTION TO LOGIC 1 Sets, Relations, and Arguments

INTRODUCTION TO LOGIC 1 Sets, Relations, and Arguments INTRODUCTION TO LOGIC 1 Sets, Relations, and Arguments Volker Halbach Pure logic is the ruin of the spirit. Antoine de Saint-Exupéry The Logic Manual The Logic Manual The Logic Manual The Logic Manual

More information

QUESTION ANSWERING SYSTEM USING SIMILARITY AND CLASSIFICATION TECHNIQUES

QUESTION ANSWERING SYSTEM USING SIMILARITY AND CLASSIFICATION TECHNIQUES International Journal of Computer Systems (ISSN: 394-65), Volume 03 Issue 07, July, 06 Available at http://www.ijcsonline.com/ QUESTION ANSWERING SYSTEM USING SIMILARITY AND CLASSIFICATION TECHNIQUES Nabeel

More information

Quorums. Christian Plattner, Gustavo Alonso Exercises for Verteilte Systeme WS05/06 Swiss Federal Institute of Technology (ETH), Zürich

Quorums. Christian Plattner, Gustavo Alonso Exercises for Verteilte Systeme WS05/06 Swiss Federal Institute of Technology (ETH), Zürich Quorums Christian Plattner, Gustavo Alonso Exercises for Verteilte Systeme WS05/06 Swiss Federal Institute of Technology (ETH), Zürich {plattner,alonso}@inf.ethz.ch 20.01.2006 Setting: A Replicated Database

More information

The Impact of Oath Writing Style on Stylometric Features and Machine Learning Classifiers

The Impact of Oath Writing Style on Stylometric Features and Machine Learning Classifiers Journal of Computer Science Original Research Paper The Impact of Oath Writing Style on Stylometric Features and Machine Learning Classifiers 1 Ahmad Alqurnehand 2 Aida Mustapha 1 Faculty of Computer Science

More information

McDougal Littell High School Math Program. correlated to. Oregon Mathematics Grade-Level Standards

McDougal Littell High School Math Program. correlated to. Oregon Mathematics Grade-Level Standards Math Program correlated to Grade-Level ( in regular (non-capitalized) font are eligible for inclusion on Oregon Statewide Assessment) CCG: NUMBERS - Understand numbers, ways of representing numbers, relationships

More information

Dave Piscitello: issues and try to (trap) him to try to get him into a (case) to take him to the vet.

Dave Piscitello: issues and try to (trap) him to try to get him into a (case) to take him to the vet. Page 1 Fast Flux PDP WG Teleconference TRANSCRIPTION Friday 5 December 2008 16:00 UTC Note: The following is the output of transcribing from an audio recording of the Fast Flux PDP WG teleconference on

More information

Studying Adaptive Learning Efficacy using Propensity Score Matching

Studying Adaptive Learning Efficacy using Propensity Score Matching Studying Adaptive Learning Efficacy using Propensity Score Matching Shirin Mojarad 1, Alfred Essa 1, Shahin Mojarad 1, Ryan S. Baker 2 McGraw-Hill Education 1, University of Pennsylvania 2 {shirin.mojarad,

More information

Smith Waterman Algorithm - Performance Analysis

Smith Waterman Algorithm - Performance Analysis Smith Waterman Algorithm - Performance Analysis Armin Bundle Department of Computer Science University of Erlangen Seminar mucosim SS 2016 Smith Waterman Algorithm - Performance Analysis Seminar mucosim

More information

1. Introduction Formal deductive logic Overview

1. Introduction Formal deductive logic Overview 1. Introduction 1.1. Formal deductive logic 1.1.0. Overview In this course we will study reasoning, but we will study only certain aspects of reasoning and study them only from one perspective. The special

More information

Dennett's Reduction of Brentano's Intentionality

Dennett's Reduction of Brentano's Intentionality Dennett's Reduction of Brentano's Intentionality By BRENT SILBY Department of Philosophy University of Canterbury Copyright (c) Brent Silby 1998 www.def-logic.com/articles Since as far back as the middle

More information

The World Wide Web and the U.S. Political News Market: Online Appendices

The World Wide Web and the U.S. Political News Market: Online Appendices The World Wide Web and the U.S. Political News Market: Online Appendices Online Appendix OA. Political Identity of Viewers Several times in the paper we treat as the left- most leaning TV station. Posner

More information

PARISH SHARE OPTION 2

PARISH SHARE OPTION 2 PARISH SHARE OPTION 2 March 2018 Background Parish Share is a key issue in the Diocese of Liverpool. It is the main way in which we finance local ministry costs; it is the single biggest expenditure in

More information

Sorting: Merge Sort. College of Computing & Information Technology King Abdulaziz University. CPCS-204 Data Structures I

Sorting: Merge Sort. College of Computing & Information Technology King Abdulaziz University. CPCS-204 Data Structures I Sorting: Merge Sort College of Computing & Information Technology King Abdulaziz University CPCS-204 Data Structures I Sorting: Merge Sort Problem with Bubble/Insertion/Selection Sorts: All of these sorts

More information

Ms. Shruti Aggarwal Assistant Professor S.G.G.S.W.U. Fatehgarh Sahib

Ms. Shruti Aggarwal Assistant Professor S.G.G.S.W.U. Fatehgarh Sahib Ms. Shruti Aggarwal S.G.G.S.W.U. Fatehgarh Sahib Email: shruti_cse@sggswu.org Area of Specialization: Data Mining, Software Engineering, Databases Subjects Taught Languages Fundamentals of Computers, C,

More information

Information Retrieval LIS 544 IMT 542 INSC 544

Information Retrieval LIS 544 IMT 542 INSC 544 Information Retrieval LIS 544 IMT 542 INSC 544 Welcome! Your instructors Jeff Huang lazyjeff@uw.edu Shawn Walker stw3@uw.edu Introductions Name Program, year Previous school(s) Most interesting thing you

More information

Closing Remarks: What can we do with multiple diverse solutions?

Closing Remarks: What can we do with multiple diverse solutions? Closing Remarks: What can we do with multiple diverse solutions? Dhruv Batra Virginia Tech Example Result CRF Diverse Segmentations. Now what? (C) Dhruv Batra 2 Your Options Nothing User in the loop (Approximate)

More information

DALI power line communication

DALI power line communication DALI power line communication Content Functionality and advantages How does it work? Applications Installation Technical parameters About us DALI PLC Content Functionality and advantages Device which allows

More information

CHAPTER 17: UNCERTAINTY AND RANDOM: WHEN IS CONCLUSION JUSTIFIED?

CHAPTER 17: UNCERTAINTY AND RANDOM: WHEN IS CONCLUSION JUSTIFIED? CHAPTER 17: UNCERTAINTY AND RANDOM: WHEN IS CONCLUSION JUSTIFIED? INTERPRETATION AND CONCLUSIONS Deduction the use of facts to reach a conclusion seems straightforward and beyond reproach. The reality

More information

MISSOURI S FRAMEWORK FOR CURRICULAR DEVELOPMENT IN MATH TOPIC I: PROBLEM SOLVING

MISSOURI S FRAMEWORK FOR CURRICULAR DEVELOPMENT IN MATH TOPIC I: PROBLEM SOLVING Prentice Hall Mathematics:,, 2004 Missouri s Framework for Curricular Development in Mathematics (Grades 9-12) TOPIC I: PROBLEM SOLVING 1. Problem-solving strategies such as organizing data, drawing a

More information

Anaphora Resolution in Biomedical Literature: A

Anaphora Resolution in Biomedical Literature: A Anaphora Resolution in Biomedical Literature: A Hybrid Approach Jennifer D Souza and Vincent Ng Human Language Technology Research Institute The University of Texas at Dallas 1 What is Anaphora Resolution?

More information

MLLunsford, Spring Activity: Conditional Probability and The Law of Total Probability

MLLunsford, Spring Activity: Conditional Probability and The Law of Total Probability MLLunsford, Spring 2003 1 Activity: Conditional Probability and The Law of Total Probability Concepts: Conditional Probability, Independent Events, the Multiplication Rule, the Law of Total Probability

More information

End of the year test day 2 #3

End of the year test day 2 #3 End of the year test day 2 #3 8th Grade Pre-Algebra / 8th Grade Math Periods 2 & 3 (Ms. Schmalzbach) Student Name/ID: 1. For the figure below, do a dilation centered at the origin with a scale factor of

More information

Predictive Coding. CSE 390 Introduction to Data Compression Fall Entropy. Bad and Good Prediction. Which Context to Use? PPM

Predictive Coding. CSE 390 Introduction to Data Compression Fall Entropy. Bad and Good Prediction. Which Context to Use? PPM Predictive Coding CSE 390 Introduction to Data Compression Fall 2004 Predictive Coding (PPM, JBIG, Differencing, Move-To-Front) Burrows-Wheeler Transform (bzip2) The next symbol can be statistically predicted

More information

MissionInsite Learning Series Compare Your Congregation To Your Community Slide 1 COMPARE YOUR CONGREGATION TO YOUR COMMUNITY USING CONGREGANT PLOT & THE COMPARATIVEINSITE REPORT This Series will cover:

More information

Formalizing a Deductively Open Belief Space

Formalizing a Deductively Open Belief Space Formalizing a Deductively Open Belief Space CSE Technical Report 2000-02 Frances L. Johnson and Stuart C. Shapiro Department of Computer Science and Engineering, Center for Multisource Information Fusion,

More information

15 Does God have a Nature?

15 Does God have a Nature? 15 Does God have a Nature? 15.1 Plantinga s Question So far I have argued for a theory of creation and the use of mathematical ways of thinking that help us to locate God. The question becomes how can

More information

9/7/2017. CS535 Big Data Fall 2017 Colorado State University Week 3 - B. FAQs. This material is built based on

9/7/2017. CS535 Big Data Fall 2017 Colorado State University  Week 3 - B. FAQs. This material is built based on S535 ig ata Fall 7 olorado State University 9/7/7 Week 3-9/5/7 S535 ig ata - Fall 7 Week 3-- S535 IG T FQs Programming ssignment We discuss link analysis in this week Installation/configuration guidelines

More information

TRAMPR: A package for analysis of Terminal-Restriction Fragment Length Polymorphism (TRFLP) data

TRAMPR: A package for analysis of Terminal-Restriction Fragment Length Polymorphism (TRFLP) data TRAMPR: A package for analysis of Terminal-Restriction Fragment Length Polymorphism (TRFLP) data Rich FitzJohn & Ian Dickie June 9, 2016 1 Introduction TRAMPR is an R package for matching terminal restriction

More information

Intelligent Agent for Information Extraction from Arabic Text without Machine Translation

Intelligent Agent for Information Extraction from Arabic Text without Machine Translation Intelligent Agent for Information Extraction from Arabic Text without Machine Translation Tarek Helmy * Abdirahman Daud Information and Computer Science Department, College of Computer Science and Engineering,

More information

PARSEC An R package for PARtial orders in Socio- EConomics Alberto Arcagni and Marco Fattore

PARSEC An R package for PARtial orders in Socio- EConomics Alberto Arcagni and Marco Fattore Dealing with Complexity in Society: From Plurality of Data to Synthetic Indicators PARSEC An R package for PARtial orders in Socio- EConomics Alberto Arcagni and Marco Fattore University of Milano Bicocca

More information

Evaluation of potential mergers of the Provo-Orem MSA and the Ogden-Clearfield MSA with the Salt Lake City MSA

Evaluation of potential mergers of the Provo-Orem MSA and the Ogden-Clearfield MSA with the Salt Lake City MSA To: From: Michael Parker, Vice President of Public Policy, Salt Lake Chamber Pamela S. Perlich, Director of Demographic Research Juliette Tennert, Director of Economic and Public Policy Research Date:

More information

Comparing World Religions Using Primary Sources

Comparing World Religions Using Primary Sources Comparing World Religions Using Primary Sources John Lectka, Kristin Nutt, Eric Schmidt Emerson Middle School Winter 2013 Lawrence & Houseworth,. Jewish Synagogue on Mason Street, San Francisco. 1866.

More information

DNA, Information, and the Signature in the Cell

DNA, Information, and the Signature in the Cell DNA, Information, and the Signature in the Cell Where Did We Come From? Where did we come from? A simple question, but not an easy answer. Darwin addressed this question in his book, On the Origin of Species.

More information

Baker Street Elementary. Presents The Life and Times in Victorian London

Baker Street Elementary. Presents The Life and Times in Victorian London Baker Street Elementary Presents The Life and Times in Victorian London Baker Street Elementary The Life and Times in Victorian London # 009 The Christmas Spirit 02/02/201 7 Welcome to topic number 9 today

More information

TECHNICAL WORKING PARTY ON AUTOMATION AND COMPUTER PROGRAMS. Twenty-Fifth Session Sibiu, Romania, September 3 to 6, 2007

TECHNICAL WORKING PARTY ON AUTOMATION AND COMPUTER PROGRAMS. Twenty-Fifth Session Sibiu, Romania, September 3 to 6, 2007 E TWC/25/13 ORIGINAL: English DATE: August 14, 2007 INTERNATIONAL UNION FOR THE PROTECTION OF NEW VARIETIES OF PLANTS GENEVA TECHNICAL WORKING PARTY ON AUTOMATION AND COMPUTER PROGRAMS Twenty-Fifth Session

More information

Tails Of Sweetbrier By Deanie Humphrys-Dunne

Tails Of Sweetbrier By Deanie Humphrys-Dunne Tails Of Sweetbrier By Deanie Humphrys-Dunne Sleeping naked is green : how an eco-cynic unplugged her fridge, sold her car, and found love in 366 days, Vanessa Farquharson. 9780470155103 :, Toronto Public

More information

Strand 1: Reading Process

Strand 1: Reading Process Prentice Hall Literature: Timeless Voices, Timeless Themes 2005, Silver Level Arizona Academic Standards, Reading Standards Articulated by Grade Level (Grade 8) Strand 1: Reading Process Reading Process

More information

CHAPTER FOUR RESEARCH FINDINGS. Introduction. D.Min. project. A coding was devised in order to assign quantitative values to each of the

CHAPTER FOUR RESEARCH FINDINGS. Introduction. D.Min. project. A coding was devised in order to assign quantitative values to each of the CHAPTER FOUR RESEARCH FINDINGS Introduction The survey (Appendix C) sent to 950 women alumnae of Dallas Seminary resulted in 377 (41%) valid surveys which were used to compute the results of this D.Min.

More information

Performance Analysis with Vampir

Performance Analysis with Vampir Performance Analysis with Vampir Bert Wesarg Technische Universität Dresden Outline Part I: Welcome to the Vampir Tool Suite Mission Event trace visualization Vampir & VampirServer The Vampir displays

More information

INTERMEDIATE LOGIC Glossary of key terms

INTERMEDIATE LOGIC Glossary of key terms 1 GLOSSARY INTERMEDIATE LOGIC BY JAMES B. NANCE INTERMEDIATE LOGIC Glossary of key terms This glossary includes terms that are defined in the text in the lesson and on the page noted. It does not include

More information

Now consider a verb - like is pretty. Does this also stand for something?

Now consider a verb - like is pretty. Does this also stand for something? Kripkenstein The rule-following paradox is a paradox about how it is possible for us to mean anything by the words of our language. More precisely, it is an argument which seems to show that it is impossible

More information

Blaise Pascal

Blaise Pascal Blaise Pascal 1623-1662 Blaise Pascal background and early life Born 1623, Clermont-Ferrand, France Mother died when he was 3 Father was a senior government administrator, which meant he was a minor member

More information

LDS Church Resources by Brett W. Smith

LDS Church Resources by Brett W. Smith Nine Mile Falls Ward Genealogy Seminar May 8, 2010 LDS Church Resources by Brett W. Smith "Old Stuff" Research Databases: FamilySearch www.familysearch.org accessible to anyone LDS Church Resources by

More information

Congregational Vitality Survey

Congregational Vitality Survey Our Savior's Sioux Falls SD Congregation ID 13703 Synod: South Dakota Synod, ELCA What is the? The Congregational Vitality Index measures the strengths and challenges of a congregation according to three

More information

STRATEGIC PLANNING PROCESS

STRATEGIC PLANNING PROCESS STRATEGIC PLANNING PROCESS Description The Strategic Planning Process is an exciting time of utilizing results from the Take Your Church s Pulse instrument, as well as further work and prayer together

More information

DOWNLOAD OR READ : THE LOGIC BOOK PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : THE LOGIC BOOK PDF EBOOK EPUB MOBI DOWNLOAD OR READ : THE LOGIC BOOK PDF EBOOK EPUB MOBI Page 1 Page 2 the logic book the logic book pdf the logic book i EDITORS FORWARD E. T. Jaynes died April 30, 1998. Before his death he asked me to

More information

Assessment of Common Fund for 2018, incorporating the former How do we decide?

Assessment of Common Fund for 2018, incorporating the former How do we decide? 9753 Assessment of Common Fund for 2018, incorporating the former How do we decide? The function of the Common Fund is to be the primary source of funding for the provision of ministry across the Diocese.

More information

THE JOURNAL OF CURIOUS LETTERS BOOK ONE OF THE 13TH REALITY SERIES

THE JOURNAL OF CURIOUS LETTERS BOOK ONE OF THE 13TH REALITY SERIES THE JOURNAL OF CURIOUS LETTERS BOOK ONE OF THE 13TH REALITY SERIES Page 1 Page 2 the journal of curious letters book one of the 13th reality series the journal of curious pdf the journal of curious letters

More information

occasions (2) occasions (5.5) occasions (10) occasions (15.5) occasions (22) occasions (28)

occasions (2) occasions (5.5) occasions (10) occasions (15.5) occasions (22) occasions (28) 1 Simulation Appendix Validity Concerns with Multiplying Items Defined by Binned Counts: An Application to a Quantity-Frequency Measure of Alcohol Use By James S. McGinley and Patrick J. Curran This appendix

More information

ECE 6504: Deep Learning for Perception

ECE 6504: Deep Learning for Perception ECE 6504: Deep Learning for Perception Topics: Recurrent Neural Networks (RNNs) BackProp Through Time (BPTT) Vanishing / Exploding Gradients [Abhishek:] Lua / Torch Tutorial Dhruv Batra Virginia Tech Administrativia

More information

A PREDICTION REGARDING THE CONFESSIONAL STRUCTURE IN ROMANIA IN 2012

A PREDICTION REGARDING THE CONFESSIONAL STRUCTURE IN ROMANIA IN 2012 Bulletin of the Transilvania University of Braşov Series IV: Philology and Cultural Studies Vol. 6 (55) No. 2-2013 A PREDICTION REGARDING THE CONFESSIONAL STRUCTURE IN ROMANIA IN 2012 Mihaela SIMIONESCU

More information

Union for Reform Judaism. URJ Youth Alumni Study: Final Report

Union for Reform Judaism. URJ Youth Alumni Study: Final Report Union for Reform Judaism URJ Youth Alumni Study: Final Report February 2018 Background and Research Questions For more than half a century, two frameworks have served the Union for Reform Judaism as incubators

More information

Draft 11/20/2017 APPENDIX C: TRANSPORTATION PLAN FORECASTS

Draft 11/20/2017 APPENDIX C: TRANSPORTATION PLAN FORECASTS APPENDIX C: TRANSPORTATION PLAN FORECASTS To determine future roadway capacity needs, year 2040 traffic forecasts were prepared using the Metropolitan Council travel demand model. The model was refined

More information

Tuen Mun Ling Liang Church

Tuen Mun Ling Liang Church NCD insights Quality Characteristic ti Analysis & Trends for the Natural Church Development Journey of Tuen Mun Ling Liang Church January-213 Pastor for 27 years: Mok Hing Wan "Service attendance" "Our

More information

7 th Grade Summer Reading

7 th Grade Summer Reading 7 th Grade Summer Reading Students are required to read TW books during the summer break. Note that there is one required book, The Bronze Bow, and a second book chosen from the list at the end of this

More information

6.080 / Great Ideas in Theoretical Computer Science Spring 2008

6.080 / Great Ideas in Theoretical Computer Science Spring 2008 MIT OpenCourseWare http://ocw.mit.edu 6.080 / 6.089 Great Ideas in Theoretical Computer Science Spring 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

More information

Six Sigma Prof. Dr. T. P. Bagchi Department of Management Indian Institute of Technology, Kharagpur. Lecture No. # 18 Acceptance Sampling

Six Sigma Prof. Dr. T. P. Bagchi Department of Management Indian Institute of Technology, Kharagpur. Lecture No. # 18 Acceptance Sampling Six Sigma Prof. Dr. T. P. Bagchi Department of Management Indian Institute of Technology, Kharagpur Lecture No. # 18 Acceptance Sampling Good afternoon, we begin today we continue with our session on Six

More information

Report of the Committee's Decision Regarding A Study in Scarlet by Sir Arthur Conan Doyle

Report of the Committee's Decision Regarding A Study in Scarlet by Sir Arthur Conan Doyle Report of the Committee's Decision Regarding A Study in Scarlet by Sir Arthur Conan Doyle June 14, 2011 Report of the Committee's Decision Regarding A Study in Scarlet by Sir Arthur Conan Doyle General

More information

Sounds of Love. Intuition and Reason

Sounds of Love. Intuition and Reason Sounds of Love Intuition and Reason Let me talk to you today about intuition and awareness. These two terms are being used so extensively by people around the world. I think it would be a good idea to

More information

Improving Tree-to-Tree Translation with Packed Forests

Improving Tree-to-Tree Translation with Packed Forests Improving Tree-to-Tree Translation with acked Forests Yang Liu, Yajuan Lü, and QunLiu Institute of Computing Technology, Chinese Academy of Sciences {yliu,lvyajuan,liuqun}@ict.ac.cn STITUTE OF COMUTG 8/10/2009

More information

Module 5. Knowledge Representation and Logic (Propositional Logic) Version 2 CSE IIT, Kharagpur

Module 5. Knowledge Representation and Logic (Propositional Logic) Version 2 CSE IIT, Kharagpur Module 5 Knowledge Representation and Logic (Propositional Logic) Lesson 12 Propositional Logic inference rules 5.5 Rules of Inference Here are some examples of sound rules of inference. Each can be shown

More information

By the Numbers Movie How We Measured the Stats

By the Numbers Movie How We Measured the Stats By the Numbers Movie How We Measured the Stats Summary Our goal in the short film By the Numbers is to provide a factual picture according to available data as to how radicalized the Muslim world is. Our

More information

ECE 5984: Introduction to Machine Learning

ECE 5984: Introduction to Machine Learning ECE 5984: Introduction to Machine Learning Topics: SVM Multi-class SVMs Neural Networks Multi-layer Perceptron Readings: Barber 17.5, Murphy 16.5 Dhruv Batra Virginia Tech HW2 Graded Mean 66/61 = 108%

More information

Final Review Ch. 1 #1

Final Review Ch. 1 #1 Final Review Ch. 1 #1 9th Grade Algebra 1A / Algebra 1 Beta (Ms. Dalton) Student Name/ID: Instructor Note: Show all of your work! 1. Translate the phrase into an algebraic expression. more than 2. Translate

More information

Factors related to students spiritual orientations

Factors related to students spiritual orientations The Christian Life Survey 2014-2015 Administration at 22 Christian Colleges tucse.taylor.edu Factors related to students spiritual orientations Introduction The Christian Life Survey (CLS) uses a set of

More information

Listening Guide. Developing Your Spiritual Life. Developing Your Spiritual Life. SF104 Lesson 01 of 05

Listening Guide. Developing Your Spiritual Life. Developing Your Spiritual Life. SF104 Lesson 01 of 05 Developing Your Spiritual Life Developing Your Spiritual Life SF104 Lesson 01 of 05 Listening Guide This Listening Guide is designed to help you ask questions and take notes on what you re learning. The

More information

A theory of adjudication is a theory primarily about what judges do when they decide cases in courts of law.

A theory of adjudication is a theory primarily about what judges do when they decide cases in courts of law. SLIDE 1 Theories of Adjudication: Legal Formalism A theory of adjudication is a theory primarily about what judges do when they decide cases in courts of law. American legal realism was a legal movement,

More information

Lead Student Lesson Plan L06: 2 Nephi 9-16

Lead Student Lesson Plan L06: 2 Nephi 9-16 Lead Student Lesson Plan L06: 2 Nephi 9-16 Main Purposes Learn a study skill and decide how to use it to better understand the scriptures. Learn from and teach others gospel principles found in the Book

More information