Switchboard Language Model Improvement with Conversational Data from Gigaword

Size: px
Start display at page:

Download "Switchboard Language Model Improvement with Conversational Data from Gigaword"

Transcription

1 Katholieke Universiteit Leuven Faculty of Engineering Master in Artificial Intelligence (MAI) Speech and Language Technology (SLT) Switchboard Language Model Improvement with Conversational Data from Gigaword Internship at ESAT-PSI Speech Group Under supervision of: Dr. Ir. Dong Hoon Van Uytsel Dr. Ir. Jacques Duchateau Promotor: Prof. Dr. Ir. Hugo Van hamme Yanfen Hao June, 2004

2 Table of Contents ABSTRACT... 2 INTRODUCTION THE STATE OF THE ART OF TEXT CLASSIFICATION BUILDING A UNIGRAM CLASSIFIER INTRODUCTION OF THE DATA SETS TEXT NORMALIZATION ORGANIZING THE CORPUS INTO TRAINING, DEVELOPMENT AND TEST PARTS CONSTRUCTION OF A SWITCHBOARD UNIGRAM LANGUAGE MODEL CLASSIFICATION WITH CROSS ENTROPY A brief review of entropy, cross-entropy and perplexity The role of cross-entropy in text classification Computing the cross-entropy of development data Finding the decision boundary for classification EVALUATING THE UNIGRAM CLASSIFIER WITH TEST DATA IMPROVING THE SWITCHBOARD LANGUAGE MODEL INSPECTING NEWSWIRE ARTICLES WITH LOWER CROSS-ENTROPY PROCEDURE OF IMPROVING THE LANGUAGE MODEL ANALYSIS EVALUATION OF THE LANGUAGE MODEL IMPROVEMENT CONCLUSION AND FUTURE WORK ACKNOWLEDGEMENT REFERENCES APPENDIX

3 Abstract This paper aims to report my project at the ESAT-PSI speech group under supervision of Dr. Dong Hoon Van Uytsel and Dr. Jacques Duchateau. The goal of the project is to extract the conversational data from a newswire corpus (Gigaword) and to improve the conversational speech (Switchboard) language model. The project consists of two stages. At the beginning of the first part, an overview of different approaches for text classification was given. Then a unigram classifier using cross-entropy for text categorization was built. What we achieved at the end of the first phrase was a conversational unigram classifier that showed high accuracy in classifying newswire text and transcriptions of conversations over the telephone. In the second stage, the classifier was used to select additional conversational data from the newswire corpus in order to augment limited spontaneous speech data. The experiments were conducted to see how efficiently these additional data can make contribution in improving the spontaneous speech language model. Introduction The fast growth of the WorldWideWeb and the increase of digital information have made the organization of information a vitally important task. Automated categorization of text plays a crucial role in many applications such as Search Engines, Text Filtering, Part of Speech Tagging, Classification and Task Orientation in Question Answering. There are many kinds of text classification tasks depending on their applications. Text can be categorized in terms of linguistic style, authorship attribution, content and so on. In this paper, we are concerned with the difference between styles in writing and speaking. The question we address is the following: given some labelled documents from a newswire corpus and conversational speech transcriptions, can we find an approach to accurately label previously unseen documents as conversational or newswire? In this paper, a survey was conducted on text classification technologies such as Naïve Bayes classifier, maximum entropy classifier, Nearest-Neighbor text classification and Support Vector Machines. After that, a unigram language model was built to use 2

4 cross-entropy to measure the difference between the test documents and the target class represented by its language model. The classifier obtained the classification boundary from 16,000 newswire documents and 4000 conversational articles. The test results showed that the classifier achieved a high accuracy rate in disambiguating newswire articles from conversational speech. The purpose we build a text classifier is that we need to use this classifier to find additional data that can be integrated into the Switchboard corpus and incorporated into the training process that will improve the Switchboard language model. With the help of the unigram classifier, about 31,000 conversational articles were extracted from the newswire corpus to improve the language model. To investigate how efficiently these data can contribute in improving the spontaneous speech language model, different data including the telephone speech transcriptions, randomly selected newswire articles and conversational documents extracted from the newswire corpus were introduced into the language model improvement to make a comparison. The results showed that the perplexity of the language model decreased apparently with the additional conversational data from the newswire corpus. 1 The state of the art of text classification Both the machine learning and the information retrieval communities have made contributions to the development of text classification. Nonetheless, more and more new methods are still coming out. A non-exhaustive list includes Naïve Bayes classifier, maximum entropy classifier, Nearest-Neighbor text classification and Support Vector Machines. Naïve Bayes text classifier [Lewis, 1998; McCallum and Nigam, 1998; Sahami, 1996] The machine learning community has spent years developing classifier-learning methods. Among these methods, the Naïve Bayes classifier has been gaining popularity lately and has been found to perform surprisingly well. 3

5 It follows a probabilistic approach for classification based on a strong assumption that all attributes of the examples are independent of each other given the context of the class. The core of the Naïve Bayes text classifier is a unigram language model. The unigram language model can tell the posterior probability that a test example belongs to a target class. Meanwhile, the prior probabilities of target class are also derived from their occurrence frequency in the observation data. The ultimate score is the product of the prior and posterior probability. The class with the maximum score is assigned to the text example. Maximum entropy classifier [K. Nigam, J. La_erty, A. McCallum, 1999] Maximum entropy is a general technique for estimating probability distributions from data. It estimates the conditional distribution of the class label given a document, which is a set of word-count features. The principle in maximum entropy is that a uniform distribution should be preferred in the absence of external knowledge. Labelled training data is used to derive a set of constraints on the expectations for the distribution. The solution to the maximum entropy formulation is found by the improved iterative scaling algorithm. Nearest-Neighbor text classification [Yang, 1999] The Nearest-Neighbor method gives a solution for text classification by finding the training examples near each test example and having them vote for the label of the example. In Nearest-Neighbor text classification, a document is regarded as a bag of words. Every word stands for a dimension. If the word does not occur in the document, its corresponding vector value is zero. While for the word appearing in the article, its value is non-zero. The Nearest-Neighbor uses a weighting mechanism to set the non-zero value so that it is higher if the word occurs frequently in an article and is lower if it infrequently appears in a document. Similarity between two documents is measured using the cosine of the angles between the vectors representing the two documents. 4

6 Support Vector Machines [Joachims, 1998; Dumais et al, 1998] Support Vector Machines (SVMs) are learning machines that are based on statistical learning theory. They perform binary classification and regression estimation tasks. SVMs non-linearly map their n dimensional input space into a higher dimensional feature space. In this high dimensional feature space a linear classifier is then constructed using quadratic programming. 2 Building a unigram classifier Based on the assumption of the Naïve Bayes classifier, we would like to build a unigram language model and use it for text classification by measuring the cross-entropy. 2.1 Introduction of the data sets The data we process are from two corpuses, the Gigaword corpus containing newswire text and the Switchboard corpus with transcriptions of telephone conversation. Gigaword English Corpus The Gigaword English Corpus is a comprehensive archive of newswire text data that has been acquired over several years by the Linguistic Data Consurtium (LDC). It includes four distinct international sources of English newswire: AFE - Agence France Press English Service APW - Associated Press Worldstream English Service NYT - The New York Times Newswire Service XIE - The Xinhua News Agency English Service Switchboard The Switchboard is a corpus of the telephone speech. The corpus contains 2430 conversations averaging 6 minutes in length and about 3 million words of text spoken by over 500 speakers of both sexes from every major dialect of American English. 5

7 2.2 Text normalization The Switchboard is different from the Gigaword in terms of the structure and the format. To fix the incompatibilities between the Gigaword and the Switchboard, it is necessary to normalize the Gigaword text. The procedure of text normalization includes: Splitting the text into sentences Removing the punctuations Converting the numbers into the full letter words Turning the text into the capitalization uniform Expanding the abbreviations 2.3 Organizing the corpus into training, development and test parts Typically, we specify 80% of the entire corpus for training and 10% for development and test parts respectively. The intuition behind this is that we need more training data to estimate the parameters of the language model and less development data to adjust them. However, we make some adaptation to this in special case. The Gigaword corpus was organized into 3 ID tables (document ID list) for every subcorpus. 80% ID terms were put into the training list; 10 % into the test list and the development list. The Switchboard corpus was also split in to 3 parts: 1.5 million words for training, 1 million words for development and the rest 0.5 million words for test. The reason of dividing the corpus in such a way is that we need more development data and test data when we compare the efficiency between the Switchboard data and the conversational articles from the Gigaword for language model improvement in the second part. 2.4 Construction of a Switchboard unigram language model What is a language model Here, the language model refers to a statistical language model. Given a vocabulary, a language model is a set of conditional probability mass functions. It returns the probability that a sentence prefix is followed by a certain word. 6

8 The role of the language model The statistical language model plays an important role in automatic speech recognition. It helps a speech recognizer figure out how likely a word sequence is, independently of the acoustics. The language model not only contributes in resolving acoustic ambiguity for Automatic Speech Recognition, but is also widely used for Natural Language Processing applications such as text classification. For example, the Naïve Bayes classifier uses a unigram language model to compute the posterior probability that a document belongs to a target class. In our task, language model is used to give the probability distribution of a language in a given discourse context so that we can evaluate the cross-entropy of the test data. The procedure of the construction Acquiring a vocabulary from the training data The vocabulary for building the language model contains 8000 words from the Switchboard training part and words from the Gigaword training corpus. Decomposing sentences into word unigram events. According to the chain rule, we use: P(W) = P( w1, w2,.., wn ) = P( wi w1, w2,..., wi 1) n i= 1 to estimate the probability of sentences. The function of a language model is to compute: ( w w, w,..., ) or P (w h) P i 1 2 w i 1 The event space (h, w) is large with temper to any available training corpus. Therefore, we only take into count the previous n-1 words for estimating the context-dependent probability of the current word. The N-gram assumption is to partition the history: P( wi w1, w2,..., wi 1) = P( wi wi n+ 1,..., wi 1) In this part, a unigram language model (n = 1) was generated for text classification. 7

9 Collecting unigram frequency and computing frequency count Estimating the parameter according to the unigram frequency count 2.5 Classification with Cross Entropy A brief review of entropy, cross-entropy and perplexity Entropy is a measure of average uncertainty of a random variable and is defined as: H(x) = - P(x)log 2P(x) Cross-entropy is used to compare the strengths of one model with those of another, given the same test data: H m x [x] = - x 1 P(x)log 2Pm (x) log N 2 P (W) = H m m [x] where N is the length of the text W measured in words, P is the true (unknown) probability distribution, m is the current model, estimated by m. Perplexity is defined as: P m is the probability of W as PP (W) = 2 m H m [x] It corresponds to a natural figure, the average number of choices a model sees The role of cross-entropy in text classification We have derived a unigram language model from the Switchboard training data. Given a collection of newswire articles and telephone conversation transcriptions, we use the cross-entropies to indicate which of them is close to the spontaneous speech represented by Switchboard unigram language model, and which is far from it. Put it another way, the newswire document has higher cross entropy value while the conversation transcription has lower one. 8

10 2.5.3 Computing the cross-entropy of development data The Switchboard text is composed of a large number of sentences. There are no document boundaries between them, while the Gigaword data are divided into documents. In order to create similar conditions, we split the Switchboard data into simulated articles. The procedure of computing the cross-entropy is illustrated in the following figure: sentences of articles cross-entropy text2ngramevts unigram event log probability of unigrm event unigram language model 1 log P (W N ) 2 m We measure the cross-entropies of 4000 documents from 4 newswire subcorpora and those of the same number of simulated articles from the Switchboard development corpus. The results of the experiments are visualized in the following pictures: 9

11 Cross-entropy comparison between Switchboard and Gigaword 10

12 11

13 2.5.4 Finding the decision boundary for classification From the above diagrams, we see that there is an obvious distance between the Gigaword articles and the Switchboard transcriptions. We measured that only 0.02% of Switchboard articles (from development part) have cross-entropies less than 10. While 94.5 % of New York Times articles have cross-entropy more than 10. For cross-entropies of Associated Press Worldstream, Xinhua News Agency and Agency France Press articles, they are nearly all above 10. Unigram cross-entropies of development data Cross-entropy SWB NYT APW AFE XIE > % 94.5% 98.78% 98.15% 99.3% Therefore, it is reasonable to define the value of 10 as the decision boundary of cross-entropy, as measured with the given Switchboard unigram language model. 2.6 Evaluating the unigram classifier with test data We random select 16,000 articles from the Gigaword test corpus and use the unigram classifier to measure their cross-entropies. For those articles with cross-entropy more than 10, we put them into the category of writing style. For those less than 10, we identify them as speech style. We obtained an accuracy rate of %. By measuring test examples, we also found a small number of Gigaword articles with a surprisingly lower cross-entropy. Manual inspection revealed that they contained conversational data. Furthermore, we need to use this classifier to extract conversational data from the Gigaword corpus for Switchboard language model improvement. 12

14 3 Improving the Switchboard language model 3.1 Inspecting Newswire articles with lower cross-entropy Following is an article from New York Time News service, but having a crossentropy of 8.58, measured with our unigram classifier. I WORK FOR THE POSTAL SERVICE I'VE BEEN TO THE DOCTOR I WENT TO THE DOCTOR THURSDAY HE TOOK A CULTURE BUT HE NEVER GOT BACK TO ME WITH THE RESULTS I GUESS THERE WAS SOME HANG UP OVER THE WEEKEND I'M NOT SURE BUT IN THE MEANTIME I WENT THROUGH ACHINESS AND HEADACHINESS Such kind of conversational content is spontaneous enough to be used for training the Switchboard language model. 3.2 Procedure of improving the language model Selecting conversational documents from the Gigaword corpus The unigram classifier is used to capture those articles with cross-entropy lower than 10 and to add them to a new corpus. Let s call this a quasi-conversation corpus because we noticed that some articles are mixtures with the conversation and the comment. Sorting the quasi-dialog corpus with cross-entropy The quasi-dialog corpus contains about 31,000 articles and 20 million words. In order to inspect the validity of the quasi-conversation data for training the Switchboard language model, we sort these articles by their cross-entropies. Improving the Switchboard language model First we introduce the ngram frequency count file obtained from the Switchboard (1.5 million words) training data into the procedure of language model improvement as baseline. Secondly, we generate another count file from the first 0.1 million words of the quasi-conversation corpus. Then, we merge these two count 13

15 files into a new count file and generate a new language model. Finally, we use this new language model to measure the perplexity of Switchboard test data. We retake the above-mentioned steps with an increment of 0.1 million words and measure the perplexities. We used a unigram to evaluate the performance of the language model. However, from the result of the experiment, we saw that the 1.5 million conversational words had already trained the unigrm language model very well and the additional quasiconversation 0.9 million words made no difference in the unigram language model improvement. Therefore, we use the bigram and trigram language models to evaluate the improvement we get. The results are in the following diagrams: bigram evaluation Perplexity Million Words 14

16 trigram evaluation Perplexity Million Words 3.3 Analysis The perplexities of the initial bigram and trigram models are and respectively. With the increment of training data from the quasi-conversation corpus, the perplexity descends. It means that if we use the improved language model for automatic speech recognition, the average number of words that can follow any word, shrinks. For the bigram language model, 0.9 million words makes the perplexity decrease from to For the trigram language model, the perplexity declines from to Obviously, with help of the same amount of additional spontaneous data, the degree that the Switchboard language model is improved is more for the trigram than for the bigram. Although both perplexity curves decrease with the similar speed within 0.4 million words, the drop in perplexity between 0.5 and 0.9 million words is much faster for the trigram than for the bigram. Moreover, the increase of perplexity with more than 0.9 million additional words for trigram language model is slower than that of the bigram. Another interesting measure is the cross-entropy of the critical point from where the perplexity starts to go up. We measured the cross-entropy of the critical point with 15

17 unigram and the value is This means that the Gigaword articles with a unigram cross-entropy less than 9.47 can be used for improving the bigram and trigram language models. The following diagram illustrates the relationship between the critical cross-entropy of the Gigaword articles and the mean cross-entropy of the Switchboard development data. 3.4 Evaluation of the language model improvement In order to see how efficient the quasi-conversation data is to improve the Switchboard language model, we use different data for training and compare their effects on the language model improvement. We use the Switchboard training data to generate the bigram language model, after training of 1.5 million Switchboard words, the perplexity decrease from to with a steep slope. Then we start the language model improvement from the perplexity of At this point, if we use randomly selected Gigaword articles, we can see that they have a 16

18 negative impact in improving the language model: the perplexity curve goes up dramatically. If we use Switchboard development data to train the language model, the perplexity curve continues to decline with fast speed. For the data from quasi-conversation corpus, the first 0.3 million words improve the language model with a fast step. It is worth noticing that the unigram cross-entropies of these articles are less than 9.1. For those data with unigram cross-entropy more than 9.1 but less than 9.47, the rate of the improvement slows down. Once the data with cross-entropy more than 9.47 are introduced into the training, the improvement is stopped and the perplexity starts to increase dramatically. To show a clear comparison of the effects of different data on the bigram language model, the initial status of the language model (the perplexity value of ) is not included in the following diagram. The diagram only illustrates the perplexity curve from to comparision of different data for improving language model Perplexity 100 Switchboard development data 95 random Gigaword articles Switchboard training data Million Words quasi dialog data 17

19 4 Conclusion and future work In this paper, we have reviewed different approaches to text classification. Based on the assumption of Naïve Bayes classifier, we built a unigram language model using the cross-entropy to select the conversational data from the newswire corpus. Cross-entropy is used to measure the difference between the test documents and the language represented by a Switchboard unigram language model. With the unigram classifier, we acquired about 31,000 articles with the cross-entropy lower than 10, from the Gigaword corpus to augment the limited Switchboard data for the language model improvement. About 0.9 million words with cross-entropy less than 9.47 improved the Switchboard trigram language model by decreasing the perplexity from to (or to for bigram language model). These articles are almost pure conversation and seldomly mixed with writing style data. Articles with unigram cross-entropies more than 9.47 are no use for the Switchboard language model improvement. For those newswire articles with unigram cross-entropies between 9.47 and 10, they are mixture of spontaneous speech and comment. The newswire articles with unigram cross-entropy more than 10 are obvious writing style. However, the amount of the additional spontaneous data extracted from the Gigaword is still not enough to boost the performance of the Switchboard language model dramatically. The text classification and conversation selection described in this paper are based on the document. This means that we only selected the conversational articles from the Gigaword corpus. After all, these documents are inadequate. Indeed, we noticed that although some newswire articles have cross-entropies more than 9.47, they still have some local conversations inside. And the number of this type of articles is large. As for future work, it is worth exploring how to refine the procedure of the conversation selection. We need further method to select conversational sentences from a document. If we can find an approach to select spontaneous speech sentences instead of the conversational document from the Gigaword corpus, we will obtain much more conversational data than present. 18

20 Acknowledgement Special thanks to the following people: Dr. Dong Hoon Van Uytsel for his guiding me throughout the internship and the articles, books he sending me. Dr. Jacques Duchateau for his suggestions and enlightening me when I was bewildered. Prof. Hugo Van hamme for his introducing me into the internship from which I have acquired much experience and skills. 19

21 References [1] T. Mitchell, Machine Learning, McGraw Hill, 1997 [2] F. Sebastiani, Machine learning in automated text categorization, ACM Computing Surveys, 2001 [3] Andrew McCallum, Kamal Nigam, A Comparison of Event Model for Naive Bayes Text Classification, AAAI-98 Workshop on "Learning for Text Categorization", 1998 [4] Y. Yang, An evaluation of statistical approaches to text categorization, Journal of Information Retrieval, Vol 1, No. 1/2, pp , 1999 [5] Y. Yang, C. Chute, An example-based mapping method for text classification and retrieval, ACM Transactions on Information Systems (TOIS), 12(3): , 1994 [6] K. Nigam, J. Lafferty, A. McCallum, Using maximum entropy for text Classification, IJCAI-99, pp , 1999 [7] V. N. Vapnik, The Nature of Statistical Learning Theory, 1995 [8] Dong Hoon Van Uytsel, Probabilistic Language Modeling with Left Corner Parsing, Chapter 1, September 2003 [9] Villaseñor-Pineda, M. Montes-y-Gómez, M. Pérez-Coutiño, and D. Vaufreydaz, A Corpus Balancing Method for Language Model Construction, Computational Linguistics and Intelligent Text Processing,

22 Appendix Modeling tools Available tools for modelling language model text2voc text2ngramevts collcnt count2ngram clean text perpl Obtaining a vocabulary containing the n most frequent words from text Segment sentence of text into n-gram events Collecting n-gram events and counting their frequencies Generating n-gram language model according to frequency count Normalizing the text Measuring the perplexity of language model A tool for manipulating the Gigaword database Turning a raw corpus into indexed database <DOC id="nyt " > <HEADLINE> WORLD'S BEST FLOCK TO MANHATTAN BEACH </HEADLINE>. <DOC id="nyt " >. <DOC id="nyt " > Input Cat_giga Output NYT NYT NYT NYT NYT Raw Corpus ID tables Displaying a random news article given its document ID NYT Document ID Input Cat_giga Output This holiday weekend the sands of Manhattan Beach will be shuffling with the top professional beach volleyball players in the world.. Text of the article 21

Probabilistic Latent Semantic Analysis

Probabilistic Latent Semantic Analysis Probabilistic Latent Semantic Analysis Thomas Hofmann Presentation by Ioannis Pavlopoulos & Andreas Damianou for the course of Data Mining & Exploration 1 Outline Latent Semantic Analysis o Need o Overview

More information

A Case Study: News Classification Based on Term Frequency

A Case Study: News Classification Based on Term Frequency A Case Study: News Classification Based on Term Frequency Petr Kroha Faculty of Computer Science University of Technology 09107 Chemnitz Germany kroha@informatik.tu-chemnitz.de Ricardo Baeza-Yates Center

More information

Iterative Cross-Training: An Algorithm for Learning from Unlabeled Web Pages

Iterative Cross-Training: An Algorithm for Learning from Unlabeled Web Pages Iterative Cross-Training: An Algorithm for Learning from Unlabeled Web Pages Nuanwan Soonthornphisaj 1 and Boonserm Kijsirikul 2 Machine Intelligence and Knowledge Discovery Laboratory Department of Computer

More information

Lecture 1: Machine Learning Basics

Lecture 1: Machine Learning Basics 1/69 Lecture 1: Machine Learning Basics Ali Harakeh University of Waterloo WAVE Lab ali.harakeh@uwaterloo.ca May 1, 2017 2/69 Overview 1 Learning Algorithms 2 Capacity, Overfitting, and Underfitting 3

More information

Using Web Searches on Important Words to Create Background Sets for LSI Classification

Using Web Searches on Important Words to Create Background Sets for LSI Classification Using Web Searches on Important Words to Create Background Sets for LSI Classification Sarah Zelikovitz and Marina Kogan College of Staten Island of CUNY 2800 Victory Blvd Staten Island, NY 11314 Abstract

More information

Linking Task: Identifying authors and book titles in verbose queries

Linking Task: Identifying authors and book titles in verbose queries Linking Task: Identifying authors and book titles in verbose queries Anaïs Ollagnier, Sébastien Fournier, and Patrice Bellot Aix-Marseille University, CNRS, ENSAM, University of Toulon, LSIS UMR 7296,

More information

Twitter Sentiment Classification on Sanders Data using Hybrid Approach

Twitter Sentiment Classification on Sanders Data using Hybrid Approach IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 4, Ver. I (July Aug. 2015), PP 118-123 www.iosrjournals.org Twitter Sentiment Classification on Sanders

More information

Rule Learning With Negation: Issues Regarding Effectiveness

Rule Learning With Negation: Issues Regarding Effectiveness Rule Learning With Negation: Issues Regarding Effectiveness S. Chua, F. Coenen, G. Malcolm University of Liverpool Department of Computer Science, Ashton Building, Ashton Street, L69 3BX Liverpool, United

More information

Assignment 1: Predicting Amazon Review Ratings

Assignment 1: Predicting Amazon Review Ratings Assignment 1: Predicting Amazon Review Ratings 1 Dataset Analysis Richard Park r2park@acsmail.ucsd.edu February 23, 2015 The dataset selected for this assignment comes from the set of Amazon reviews for

More information

Speech Recognition at ICSI: Broadcast News and beyond

Speech Recognition at ICSI: Broadcast News and beyond Speech Recognition at ICSI: Broadcast News and beyond Dan Ellis International Computer Science Institute, Berkeley CA Outline 1 2 3 The DARPA Broadcast News task Aspects of ICSI

More information

Semi-supervised methods of text processing, and an application to medical concept extraction. Yacine Jernite Text-as-Data series September 17.

Semi-supervised methods of text processing, and an application to medical concept extraction. Yacine Jernite Text-as-Data series September 17. Semi-supervised methods of text processing, and an application to medical concept extraction Yacine Jernite Text-as-Data series September 17. 2015 What do we want from text? 1. Extract information 2. Link

More information

CS Machine Learning

CS Machine Learning CS 478 - Machine Learning Projects Data Representation Basic testing and evaluation schemes CS 478 Data and Testing 1 Programming Issues l Program in any platform you want l Realize that you will be doing

More information

Learning From the Past with Experiment Databases

Learning From the Past with Experiment Databases Learning From the Past with Experiment Databases Joaquin Vanschoren 1, Bernhard Pfahringer 2, and Geoff Holmes 2 1 Computer Science Dept., K.U.Leuven, Leuven, Belgium 2 Computer Science Dept., University

More information

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur Module 12 Machine Learning 12.1 Instructional Objective The students should understand the concept of learning systems Students should learn about different aspects of a learning system Students should

More information

Web as Corpus. Corpus Linguistics. Web as Corpus 1 / 1. Corpus Linguistics. Web as Corpus. web.pl 3 / 1. Sketch Engine. Corpus Linguistics

Web as Corpus. Corpus Linguistics. Web as Corpus 1 / 1. Corpus Linguistics. Web as Corpus. web.pl 3 / 1. Sketch Engine. Corpus Linguistics (L615) Markus Dickinson Department of Linguistics, Indiana University Spring 2013 The web provides new opportunities for gathering data Viable source of disposable corpora, built ad hoc for specific purposes

More information

Reducing Features to Improve Bug Prediction

Reducing Features to Improve Bug Prediction Reducing Features to Improve Bug Prediction Shivkumar Shivaji, E. James Whitehead, Jr., Ram Akella University of California Santa Cruz {shiv,ejw,ram}@soe.ucsc.edu Sunghun Kim Hong Kong University of Science

More information

Calibration of Confidence Measures in Speech Recognition

Calibration of Confidence Measures in Speech Recognition Submitted to IEEE Trans on Audio, Speech, and Language, July 2010 1 Calibration of Confidence Measures in Speech Recognition Dong Yu, Senior Member, IEEE, Jinyu Li, Member, IEEE, Li Deng, Fellow, IEEE

More information

Python Machine Learning

Python Machine Learning Python Machine Learning Unlock deeper insights into machine learning with this vital guide to cuttingedge predictive analytics Sebastian Raschka [ PUBLISHING 1 open source I community experience distilled

More information

MULTILINGUAL INFORMATION ACCESS IN DIGITAL LIBRARY

MULTILINGUAL INFORMATION ACCESS IN DIGITAL LIBRARY MULTILINGUAL INFORMATION ACCESS IN DIGITAL LIBRARY Chen, Hsin-Hsi Department of Computer Science and Information Engineering National Taiwan University Taipei, Taiwan E-mail: hh_chen@csie.ntu.edu.tw Abstract

More information

2/15/13. POS Tagging Problem. Part-of-Speech Tagging. Example English Part-of-Speech Tagsets. More Details of the Problem. Typical Problem Cases

2/15/13. POS Tagging Problem. Part-of-Speech Tagging. Example English Part-of-Speech Tagsets. More Details of the Problem. Typical Problem Cases POS Tagging Problem Part-of-Speech Tagging L545 Spring 203 Given a sentence W Wn and a tagset of lexical categories, find the most likely tag T..Tn for each word in the sentence Example Secretariat/P is/vbz

More information

Experiments with SMS Translation and Stochastic Gradient Descent in Spanish Text Author Profiling

Experiments with SMS Translation and Stochastic Gradient Descent in Spanish Text Author Profiling Experiments with SMS Translation and Stochastic Gradient Descent in Spanish Text Author Profiling Notebook for PAN at CLEF 2013 Andrés Alfonso Caurcel Díaz 1 and José María Gómez Hidalgo 2 1 Universidad

More information

Human Emotion Recognition From Speech

Human Emotion Recognition From Speech RESEARCH ARTICLE OPEN ACCESS Human Emotion Recognition From Speech Miss. Aparna P. Wanare*, Prof. Shankar N. Dandare *(Department of Electronics & Telecommunication Engineering, Sant Gadge Baba Amravati

More information

Cross-Lingual Text Categorization

Cross-Lingual Text Categorization Cross-Lingual Text Categorization Nuria Bel 1, Cornelis H.A. Koster 2, and Marta Villegas 1 1 Grup d Investigació en Lingüística Computacional Universitat de Barcelona, 028 - Barcelona, Spain. {nuria,tona}@gilc.ub.es

More information

SINGLE DOCUMENT AUTOMATIC TEXT SUMMARIZATION USING TERM FREQUENCY-INVERSE DOCUMENT FREQUENCY (TF-IDF)

SINGLE DOCUMENT AUTOMATIC TEXT SUMMARIZATION USING TERM FREQUENCY-INVERSE DOCUMENT FREQUENCY (TF-IDF) SINGLE DOCUMENT AUTOMATIC TEXT SUMMARIZATION USING TERM FREQUENCY-INVERSE DOCUMENT FREQUENCY (TF-IDF) Hans Christian 1 ; Mikhael Pramodana Agus 2 ; Derwin Suhartono 3 1,2,3 Computer Science Department,

More information

Rule Learning with Negation: Issues Regarding Effectiveness

Rule Learning with Negation: Issues Regarding Effectiveness Rule Learning with Negation: Issues Regarding Effectiveness Stephanie Chua, Frans Coenen, and Grant Malcolm University of Liverpool Department of Computer Science, Ashton Building, Ashton Street, L69 3BX

More information

Chinese Language Parsing with Maximum-Entropy-Inspired Parser

Chinese Language Parsing with Maximum-Entropy-Inspired Parser Chinese Language Parsing with Maximum-Entropy-Inspired Parser Heng Lian Brown University Abstract The Chinese language has many special characteristics that make parsing difficult. The performance of state-of-the-art

More information

Introduction to Ensemble Learning Featuring Successes in the Netflix Prize Competition

Introduction to Ensemble Learning Featuring Successes in the Netflix Prize Competition Introduction to Ensemble Learning Featuring Successes in the Netflix Prize Competition Todd Holloway Two Lecture Series for B551 November 20 & 27, 2007 Indiana University Outline Introduction Bias and

More information

arxiv: v1 [cs.lg] 3 May 2013

arxiv: v1 [cs.lg] 3 May 2013 Feature Selection Based on Term Frequency and T-Test for Text Categorization Deqing Wang dqwang@nlsde.buaa.edu.cn Hui Zhang hzhang@nlsde.buaa.edu.cn Rui Liu, Weifeng Lv {liurui,lwf}@nlsde.buaa.edu.cn arxiv:1305.0638v1

More information

Learning Methods in Multilingual Speech Recognition

Learning Methods in Multilingual Speech Recognition Learning Methods in Multilingual Speech Recognition Hui Lin Department of Electrical Engineering University of Washington Seattle, WA 98125 linhui@u.washington.edu Li Deng, Jasha Droppo, Dong Yu, and Alex

More information

A Comparison of Two Text Representations for Sentiment Analysis

A Comparison of Two Text Representations for Sentiment Analysis 010 International Conference on Computer Application and System Modeling (ICCASM 010) A Comparison of Two Text Representations for Sentiment Analysis Jianxiong Wang School of Computer Science & Educational

More information

Multivariate k-nearest Neighbor Regression for Time Series data -

Multivariate k-nearest Neighbor Regression for Time Series data - Multivariate k-nearest Neighbor Regression for Time Series data - a novel Algorithm for Forecasting UK Electricity Demand ISF 2013, Seoul, Korea Fahad H. Al-Qahtani Dr. Sven F. Crone Management Science,

More information

Language Independent Passage Retrieval for Question Answering

Language Independent Passage Retrieval for Question Answering Language Independent Passage Retrieval for Question Answering José Manuel Gómez-Soriano 1, Manuel Montes-y-Gómez 2, Emilio Sanchis-Arnal 1, Luis Villaseñor-Pineda 2, Paolo Rosso 1 1 Polytechnic University

More information

Modeling function word errors in DNN-HMM based LVCSR systems

Modeling function word errors in DNN-HMM based LVCSR systems Modeling function word errors in DNN-HMM based LVCSR systems Melvin Jose Johnson Premkumar, Ankur Bapna and Sree Avinash Parchuri Department of Computer Science Department of Electrical Engineering Stanford

More information

The Internet as a Normative Corpus: Grammar Checking with a Search Engine

The Internet as a Normative Corpus: Grammar Checking with a Search Engine The Internet as a Normative Corpus: Grammar Checking with a Search Engine Jonas Sjöbergh KTH Nada SE-100 44 Stockholm, Sweden jsh@nada.kth.se Abstract In this paper some methods using the Internet as a

More information

A Bootstrapping Model of Frequency and Context Effects in Word Learning

A Bootstrapping Model of Frequency and Context Effects in Word Learning Cognitive Science 41 (2017) 590 622 Copyright 2016 Cognitive Science Society, Inc. All rights reserved. ISSN: 0364-0213 print / 1551-6709 online DOI: 10.1111/cogs.12353 A Bootstrapping Model of Frequency

More information

Netpix: A Method of Feature Selection Leading. to Accurate Sentiment-Based Classification Models

Netpix: A Method of Feature Selection Leading. to Accurate Sentiment-Based Classification Models Netpix: A Method of Feature Selection Leading to Accurate Sentiment-Based Classification Models 1 Netpix: A Method of Feature Selection Leading to Accurate Sentiment-Based Classification Models James B.

More information

System Implementation for SemEval-2017 Task 4 Subtask A Based on Interpolated Deep Neural Networks

System Implementation for SemEval-2017 Task 4 Subtask A Based on Interpolated Deep Neural Networks System Implementation for SemEval-2017 Task 4 Subtask A Based on Interpolated Deep Neural Networks 1 Tzu-Hsuan Yang, 2 Tzu-Hsuan Tseng, and 3 Chia-Ping Chen Department of Computer Science and Engineering

More information

Analysis of Emotion Recognition System through Speech Signal Using KNN & GMM Classifier

Analysis of Emotion Recognition System through Speech Signal Using KNN & GMM Classifier IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 10, Issue 2, Ver.1 (Mar - Apr.2015), PP 55-61 www.iosrjournals.org Analysis of Emotion

More information

Unsupervised Learning of Word Semantic Embedding using the Deep Structured Semantic Model

Unsupervised Learning of Word Semantic Embedding using the Deep Structured Semantic Model Unsupervised Learning of Word Semantic Embedding using the Deep Structured Semantic Model Xinying Song, Xiaodong He, Jianfeng Gao, Li Deng Microsoft Research, One Microsoft Way, Redmond, WA 98052, U.S.A.

More information

The 9 th International Scientific Conference elearning and software for Education Bucharest, April 25-26, / X

The 9 th International Scientific Conference elearning and software for Education Bucharest, April 25-26, / X The 9 th International Scientific Conference elearning and software for Education Bucharest, April 25-26, 2013 10.12753/2066-026X-13-154 DATA MINING SOLUTIONS FOR DETERMINING STUDENT'S PROFILE Adela BÂRA,

More information

Using dialogue context to improve parsing performance in dialogue systems

Using dialogue context to improve parsing performance in dialogue systems Using dialogue context to improve parsing performance in dialogue systems Ivan Meza-Ruiz and Oliver Lemon School of Informatics, Edinburgh University 2 Buccleuch Place, Edinburgh I.V.Meza-Ruiz@sms.ed.ac.uk,

More information

Modeling function word errors in DNN-HMM based LVCSR systems

Modeling function word errors in DNN-HMM based LVCSR systems Modeling function word errors in DNN-HMM based LVCSR systems Melvin Jose Johnson Premkumar, Ankur Bapna and Sree Avinash Parchuri Department of Computer Science Department of Electrical Engineering Stanford

More information

Universidade do Minho Escola de Engenharia

Universidade do Minho Escola de Engenharia Universidade do Minho Escola de Engenharia Universidade do Minho Escola de Engenharia Dissertação de Mestrado Knowledge Discovery is the nontrivial extraction of implicit, previously unknown, and potentially

More information

Learning Structural Correspondences Across Different Linguistic Domains with Synchronous Neural Language Models

Learning Structural Correspondences Across Different Linguistic Domains with Synchronous Neural Language Models Learning Structural Correspondences Across Different Linguistic Domains with Synchronous Neural Language Models Stephan Gouws and GJ van Rooyen MIH Medialab, Stellenbosch University SOUTH AFRICA {stephan,gvrooyen}@ml.sun.ac.za

More information

Semi-Supervised Face Detection

Semi-Supervised Face Detection Semi-Supervised Face Detection Nicu Sebe, Ira Cohen 2, Thomas S. Huang 3, Theo Gevers Faculty of Science, University of Amsterdam, The Netherlands 2 HP Research Labs, USA 3 Beckman Institute, University

More information

Machine Learning and Data Mining. Ensembles of Learners. Prof. Alexander Ihler

Machine Learning and Data Mining. Ensembles of Learners. Prof. Alexander Ihler Machine Learning and Data Mining Ensembles of Learners Prof. Alexander Ihler Ensemble methods Why learn one classifier when you can learn many? Ensemble: combine many predictors (Weighted) combina

More information

A New Perspective on Combining GMM and DNN Frameworks for Speaker Adaptation

A New Perspective on Combining GMM and DNN Frameworks for Speaker Adaptation A New Perspective on Combining GMM and DNN Frameworks for Speaker Adaptation SLSP-2016 October 11-12 Natalia Tomashenko 1,2,3 natalia.tomashenko@univ-lemans.fr Yuri Khokhlov 3 khokhlov@speechpro.com Yannick

More information

Disambiguation of Thai Personal Name from Online News Articles

Disambiguation of Thai Personal Name from Online News Articles Disambiguation of Thai Personal Name from Online News Articles Phaisarn Sutheebanjard Graduate School of Information Technology Siam University Bangkok, Thailand mr.phaisarn@gmail.com Abstract Since online

More information

Speech Emotion Recognition Using Support Vector Machine

Speech Emotion Recognition Using Support Vector Machine Speech Emotion Recognition Using Support Vector Machine Yixiong Pan, Peipei Shen and Liping Shen Department of Computer Technology Shanghai JiaoTong University, Shanghai, China panyixiong@sjtu.edu.cn,

More information

DIDACTIC MODEL BRIDGING A CONCEPT WITH PHENOMENA

DIDACTIC MODEL BRIDGING A CONCEPT WITH PHENOMENA DIDACTIC MODEL BRIDGING A CONCEPT WITH PHENOMENA Beba Shternberg, Center for Educational Technology, Israel Michal Yerushalmy University of Haifa, Israel The article focuses on a specific method of constructing

More information

QuickStroke: An Incremental On-line Chinese Handwriting Recognition System

QuickStroke: An Incremental On-line Chinese Handwriting Recognition System QuickStroke: An Incremental On-line Chinese Handwriting Recognition System Nada P. Matić John C. Platt Λ Tony Wang y Synaptics, Inc. 2381 Bering Drive San Jose, CA 95131, USA Abstract This paper presents

More information

CLASSIFICATION OF TEXT DOCUMENTS USING INTEGER REPRESENTATION AND REGRESSION: AN INTEGRATED APPROACH

CLASSIFICATION OF TEXT DOCUMENTS USING INTEGER REPRESENTATION AND REGRESSION: AN INTEGRATED APPROACH ISSN: 0976-3104 Danti and Bhushan. ARTICLE OPEN ACCESS CLASSIFICATION OF TEXT DOCUMENTS USING INTEGER REPRESENTATION AND REGRESSION: AN INTEGRATED APPROACH Ajit Danti 1 and SN Bharath Bhushan 2* 1 Department

More information

Word Segmentation of Off-line Handwritten Documents

Word Segmentation of Off-line Handwritten Documents Word Segmentation of Off-line Handwritten Documents Chen Huang and Sargur N. Srihari {chuang5, srihari}@cedar.buffalo.edu Center of Excellence for Document Analysis and Recognition (CEDAR), Department

More information

Semi-Supervised GMM and DNN Acoustic Model Training with Multi-system Combination and Confidence Re-calibration

Semi-Supervised GMM and DNN Acoustic Model Training with Multi-system Combination and Confidence Re-calibration INTERSPEECH 2013 Semi-Supervised GMM and DNN Acoustic Model Training with Multi-system Combination and Confidence Re-calibration Yan Huang, Dong Yu, Yifan Gong, and Chaojun Liu Microsoft Corporation, One

More information

THE ROLE OF DECISION TREES IN NATURAL LANGUAGE PROCESSING

THE ROLE OF DECISION TREES IN NATURAL LANGUAGE PROCESSING SISOM & ACOUSTICS 2015, Bucharest 21-22 May THE ROLE OF DECISION TREES IN NATURAL LANGUAGE PROCESSING MarilenaăLAZ R 1, Diana MILITARU 2 1 Military Equipment and Technologies Research Agency, Bucharest,

More information

A study of speaker adaptation for DNN-based speech synthesis

A study of speaker adaptation for DNN-based speech synthesis A study of speaker adaptation for DNN-based speech synthesis Zhizheng Wu, Pawel Swietojanski, Christophe Veaux, Steve Renals, Simon King The Centre for Speech Technology Research (CSTR) University of Edinburgh,

More information

Automatic document classification of biological literature

Automatic document classification of biological literature BMC Bioinformatics This Provisional PDF corresponds to the article as it appeared upon acceptance. Copyedited and fully formatted PDF and full text (HTML) versions will be made available soon. Automatic

More information

CSL465/603 - Machine Learning

CSL465/603 - Machine Learning CSL465/603 - Machine Learning Fall 2016 Narayanan C Krishnan ckn@iitrpr.ac.in Introduction CSL465/603 - Machine Learning 1 Administrative Trivia Course Structure 3-0-2 Lecture Timings Monday 9.55-10.45am

More information

Introduction to Simulation

Introduction to Simulation Introduction to Simulation Spring 2010 Dr. Louis Luangkesorn University of Pittsburgh January 19, 2010 Dr. Louis Luangkesorn ( University of Pittsburgh ) Introduction to Simulation January 19, 2010 1 /

More information

Generative models and adversarial training

Generative models and adversarial training Day 4 Lecture 1 Generative models and adversarial training Kevin McGuinness kevin.mcguinness@dcu.ie Research Fellow Insight Centre for Data Analytics Dublin City University What is a generative model?

More information

Enhancing Unlexicalized Parsing Performance using a Wide Coverage Lexicon, Fuzzy Tag-set Mapping, and EM-HMM-based Lexical Probabilities

Enhancing Unlexicalized Parsing Performance using a Wide Coverage Lexicon, Fuzzy Tag-set Mapping, and EM-HMM-based Lexical Probabilities Enhancing Unlexicalized Parsing Performance using a Wide Coverage Lexicon, Fuzzy Tag-set Mapping, and EM-HMM-based Lexical Probabilities Yoav Goldberg Reut Tsarfaty Meni Adler Michael Elhadad Ben Gurion

More information

Investigation on Mandarin Broadcast News Speech Recognition

Investigation on Mandarin Broadcast News Speech Recognition Investigation on Mandarin Broadcast News Speech Recognition Mei-Yuh Hwang 1, Xin Lei 1, Wen Wang 2, Takahiro Shinozaki 1 1 Univ. of Washington, Dept. of Electrical Engineering, Seattle, WA 98195 USA 2

More information

Online Updating of Word Representations for Part-of-Speech Tagging

Online Updating of Word Representations for Part-of-Speech Tagging Online Updating of Word Representations for Part-of-Speech Tagging Wenpeng Yin LMU Munich wenpeng@cis.lmu.de Tobias Schnabel Cornell University tbs49@cornell.edu Hinrich Schütze LMU Munich inquiries@cislmu.org

More information

Corpus Linguistics (L615)

Corpus Linguistics (L615) (L615) Basics of Markus Dickinson Department of, Indiana University Spring 2013 1 / 23 : the extent to which a sample includes the full range of variability in a population distinguishes corpora from archives

More information

Conversation Starters: Using Spatial Context to Initiate Dialogue in First Person Perspective Games

Conversation Starters: Using Spatial Context to Initiate Dialogue in First Person Perspective Games Conversation Starters: Using Spatial Context to Initiate Dialogue in First Person Perspective Games David B. Christian, Mark O. Riedl and R. Michael Young Liquid Narrative Group Computer Science Department

More information

Large-Scale Web Page Classification. Sathi T Marath. Submitted in partial fulfilment of the requirements. for the degree of Doctor of Philosophy

Large-Scale Web Page Classification. Sathi T Marath. Submitted in partial fulfilment of the requirements. for the degree of Doctor of Philosophy Large-Scale Web Page Classification by Sathi T Marath Submitted in partial fulfilment of the requirements for the degree of Doctor of Philosophy at Dalhousie University Halifax, Nova Scotia November 2010

More information

Multi-Lingual Text Leveling

Multi-Lingual Text Leveling Multi-Lingual Text Leveling Salim Roukos, Jerome Quin, and Todd Ward IBM T. J. Watson Research Center, Yorktown Heights, NY 10598 {roukos,jlquinn,tward}@us.ibm.com Abstract. Determining the language proficiency

More information

A Neural Network GUI Tested on Text-To-Phoneme Mapping

A Neural Network GUI Tested on Text-To-Phoneme Mapping A Neural Network GUI Tested on Text-To-Phoneme Mapping MAARTEN TROMPPER Universiteit Utrecht m.f.a.trompper@students.uu.nl Abstract Text-to-phoneme (T2P) mapping is a necessary step in any speech synthesis

More information

Mathematics subject curriculum

Mathematics subject curriculum Mathematics subject curriculum Dette er ei omsetjing av den fastsette læreplanteksten. Læreplanen er fastsett på Nynorsk Established as a Regulation by the Ministry of Education and Research on 24 June

More information

Universiteit Leiden ICT in Business

Universiteit Leiden ICT in Business Universiteit Leiden ICT in Business Ranking of Multi-Word Terms Name: Ricardo R.M. Blikman Student-no: s1184164 Internal report number: 2012-11 Date: 07/03/2013 1st supervisor: Prof. Dr. J.N. Kok 2nd supervisor:

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Ch 2 Test Remediation Work Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Provide an appropriate response. 1) High temperatures in a certain

More information

Developing True/False Test Sheet Generating System with Diagnosing Basic Cognitive Ability

Developing True/False Test Sheet Generating System with Diagnosing Basic Cognitive Ability Developing True/False Test Sheet Generating System with Diagnosing Basic Cognitive Ability Shih-Bin Chen Dept. of Information and Computer Engineering, Chung-Yuan Christian University Chung-Li, Taiwan

More information

Bug triage in open source systems: a review

Bug triage in open source systems: a review Int. J. Collaborative Enterprise, Vol. 4, No. 4, 2014 299 Bug triage in open source systems: a review V. Akila* and G. Zayaraz Department of Computer Science and Engineering, Pondicherry Engineering College,

More information

Deep Neural Network Language Models

Deep Neural Network Language Models Deep Neural Network Language Models Ebru Arısoy, Tara N. Sainath, Brian Kingsbury, Bhuvana Ramabhadran IBM T.J. Watson Research Center Yorktown Heights, NY, 10598, USA {earisoy, tsainath, bedk, bhuvana}@us.ibm.com

More information

Using focal point learning to improve human machine tacit coordination

Using focal point learning to improve human machine tacit coordination DOI 10.1007/s10458-010-9126-5 Using focal point learning to improve human machine tacit coordination InonZuckerman SaritKraus Jeffrey S. Rosenschein The Author(s) 2010 Abstract We consider an automated

More information

Why Did My Detector Do That?!

Why Did My Detector Do That?! Why Did My Detector Do That?! Predicting Keystroke-Dynamics Error Rates Kevin Killourhy and Roy Maxion Dependable Systems Laboratory Computer Science Department Carnegie Mellon University 5000 Forbes Ave,

More information

Syntactic surprisal affects spoken word duration in conversational contexts

Syntactic surprisal affects spoken word duration in conversational contexts Syntactic surprisal affects spoken word duration in conversational contexts Vera Demberg, Asad B. Sayeed, Philip J. Gorinski, and Nikolaos Engonopoulos M2CI Cluster of Excellence and Department of Computational

More information

Mandarin Lexical Tone Recognition: The Gating Paradigm

Mandarin Lexical Tone Recognition: The Gating Paradigm Kansas Working Papers in Linguistics, Vol. 0 (008), p. 8 Abstract Mandarin Lexical Tone Recognition: The Gating Paradigm Yuwen Lai and Jie Zhang University of Kansas Research on spoken word recognition

More information

WE GAVE A LAWYER BASIC MATH SKILLS, AND YOU WON T BELIEVE WHAT HAPPENED NEXT

WE GAVE A LAWYER BASIC MATH SKILLS, AND YOU WON T BELIEVE WHAT HAPPENED NEXT WE GAVE A LAWYER BASIC MATH SKILLS, AND YOU WON T BELIEVE WHAT HAPPENED NEXT PRACTICAL APPLICATIONS OF RANDOM SAMPLING IN ediscovery By Matthew Verga, J.D. INTRODUCTION Anyone who spends ample time working

More information

Latent Semantic Analysis

Latent Semantic Analysis Latent Semantic Analysis Adapted from: www.ics.uci.edu/~lopes/teaching/inf141w10/.../lsa_intro_ai_seminar.ppt (from Melanie Martin) and http://videolectures.net/slsfs05_hofmann_lsvm/ (from Thomas Hoffman)

More information

PREDICTING SPEECH RECOGNITION CONFIDENCE USING DEEP LEARNING WITH WORD IDENTITY AND SCORE FEATURES

PREDICTING SPEECH RECOGNITION CONFIDENCE USING DEEP LEARNING WITH WORD IDENTITY AND SCORE FEATURES PREDICTING SPEECH RECOGNITION CONFIDENCE USING DEEP LEARNING WITH WORD IDENTITY AND SCORE FEATURES Po-Sen Huang, Kshitiz Kumar, Chaojun Liu, Yifan Gong, Li Deng Department of Electrical and Computer Engineering,

More information

Class-Discriminative Weighted Distortion Measure for VQ-Based Speaker Identification

Class-Discriminative Weighted Distortion Measure for VQ-Based Speaker Identification Class-Discriminative Weighted Distortion Measure for VQ-Based Speaker Identification Tomi Kinnunen and Ismo Kärkkäinen University of Joensuu, Department of Computer Science, P.O. Box 111, 80101 JOENSUU,

More information

AQUA: An Ontology-Driven Question Answering System

AQUA: An Ontology-Driven Question Answering System AQUA: An Ontology-Driven Question Answering System Maria Vargas-Vera, Enrico Motta and John Domingue Knowledge Media Institute (KMI) The Open University, Walton Hall, Milton Keynes, MK7 6AA, United Kingdom.

More information

have to be modeled) or isolated words. Output of the system is a grapheme-tophoneme conversion system which takes as its input the spelling of words,

have to be modeled) or isolated words. Output of the system is a grapheme-tophoneme conversion system which takes as its input the spelling of words, A Language-Independent, Data-Oriented Architecture for Grapheme-to-Phoneme Conversion Walter Daelemans and Antal van den Bosch Proceedings ESCA-IEEE speech synthesis conference, New York, September 1994

More information

Dialog Act Classification Using N-Gram Algorithms

Dialog Act Classification Using N-Gram Algorithms Dialog Act Classification Using N-Gram Algorithms Max Louwerse and Scott Crossley Institute for Intelligent Systems University of Memphis {max, scrossley } @ mail.psyc.memphis.edu Abstract Speech act classification

More information

Predicting Student Attrition in MOOCs using Sentiment Analysis and Neural Networks

Predicting Student Attrition in MOOCs using Sentiment Analysis and Neural Networks Predicting Student Attrition in MOOCs using Sentiment Analysis and Neural Networks Devendra Singh Chaplot, Eunhee Rhim, and Jihie Kim Samsung Electronics Co., Ltd. Seoul, South Korea {dev.chaplot,eunhee.rhim,jihie.kim}@samsung.com

More information

Problems of the Arabic OCR: New Attitudes

Problems of the Arabic OCR: New Attitudes Problems of the Arabic OCR: New Attitudes Prof. O.Redkin, Dr. O.Bernikova Department of Asian and African Studies, St. Petersburg State University, St Petersburg, Russia Abstract - This paper reviews existing

More information

The Karlsruhe Institute of Technology Translation Systems for the WMT 2011

The Karlsruhe Institute of Technology Translation Systems for the WMT 2011 The Karlsruhe Institute of Technology Translation Systems for the WMT 2011 Teresa Herrmann, Mohammed Mediani, Jan Niehues and Alex Waibel Karlsruhe Institute of Technology Karlsruhe, Germany firstname.lastname@kit.edu

More information

Indian Institute of Technology, Kanpur

Indian Institute of Technology, Kanpur Indian Institute of Technology, Kanpur Course Project - CS671A POS Tagging of Code Mixed Text Ayushman Sisodiya (12188) {ayushmn@iitk.ac.in} Donthu Vamsi Krishna (15111016) {vamsi@iitk.ac.in} Sandeep Kumar

More information

Exposé for a Master s Thesis

Exposé for a Master s Thesis Exposé for a Master s Thesis Stefan Selent January 21, 2017 Working Title: TF Relation Mining: An Active Learning Approach Introduction The amount of scientific literature is ever increasing. Especially

More information

DOES RETELLING TECHNIQUE IMPROVE SPEAKING FLUENCY?

DOES RETELLING TECHNIQUE IMPROVE SPEAKING FLUENCY? DOES RETELLING TECHNIQUE IMPROVE SPEAKING FLUENCY? Noor Rachmawaty (itaw75123@yahoo.com) Istanti Hermagustiana (dulcemaria_81@yahoo.com) Universitas Mulawarman, Indonesia Abstract: This paper is based

More information

The University of Amsterdam s Concept Detection System at ImageCLEF 2011

The University of Amsterdam s Concept Detection System at ImageCLEF 2011 The University of Amsterdam s Concept Detection System at ImageCLEF 2011 Koen E. A. van de Sande and Cees G. M. Snoek Intelligent Systems Lab Amsterdam, University of Amsterdam Software available from:

More information

CS 446: Machine Learning

CS 446: Machine Learning CS 446: Machine Learning Introduction to LBJava: a Learning Based Programming Language Writing classifiers Christos Christodoulopoulos Parisa Kordjamshidi Motivation 2 Motivation You still have not learnt

More information

Role of Pausing in Text-to-Speech Synthesis for Simultaneous Interpretation

Role of Pausing in Text-to-Speech Synthesis for Simultaneous Interpretation Role of Pausing in Text-to-Speech Synthesis for Simultaneous Interpretation Vivek Kumar Rangarajan Sridhar, John Chen, Srinivas Bangalore, Alistair Conkie AT&T abs - Research 180 Park Avenue, Florham Park,

More information

BENCHMARK TREND COMPARISON REPORT:

BENCHMARK TREND COMPARISON REPORT: National Survey of Student Engagement (NSSE) BENCHMARK TREND COMPARISON REPORT: CARNEGIE PEER INSTITUTIONS, 2003-2011 PREPARED BY: ANGEL A. SANCHEZ, DIRECTOR KELLI PAYNE, ADMINISTRATIVE ANALYST/ SPECIALIST

More information

Design Of An Automatic Speaker Recognition System Using MFCC, Vector Quantization And LBG Algorithm

Design Of An Automatic Speaker Recognition System Using MFCC, Vector Quantization And LBG Algorithm Design Of An Automatic Speaker Recognition System Using MFCC, Vector Quantization And LBG Algorithm Prof. Ch.Srinivasa Kumar Prof. and Head of department. Electronics and communication Nalanda Institute

More information

On-Line Data Analytics

On-Line Data Analytics International Journal of Computer Applications in Engineering Sciences [VOL I, ISSUE III, SEPTEMBER 2011] [ISSN: 2231-4946] On-Line Data Analytics Yugandhar Vemulapalli #, Devarapalli Raghu *, Raja Jacob

More information

Speech Segmentation Using Probabilistic Phonetic Feature Hierarchy and Support Vector Machines

Speech Segmentation Using Probabilistic Phonetic Feature Hierarchy and Support Vector Machines Speech Segmentation Using Probabilistic Phonetic Feature Hierarchy and Support Vector Machines Amit Juneja and Carol Espy-Wilson Department of Electrical and Computer Engineering University of Maryland,

More information

Clickthrough-Based Translation Models for Web Search: from Word Models to Phrase Models

Clickthrough-Based Translation Models for Web Search: from Word Models to Phrase Models Clickthrough-Based Translation Models for Web Search: from Word Models to Phrase Models Jianfeng Gao Microsoft Research One Microsoft Way Redmond, WA 98052 USA jfgao@microsoft.com Xiaodong He Microsoft

More information

COPING WITH LANGUAGE DATA SPARSITY: SEMANTIC HEAD MAPPING OF COMPOUND WORDS

COPING WITH LANGUAGE DATA SPARSITY: SEMANTIC HEAD MAPPING OF COMPOUND WORDS COPING WITH LANGUAGE DATA SPARSITY: SEMANTIC HEAD MAPPING OF COMPOUND WORDS Joris Pelemans 1, Kris Demuynck 2, Hugo Van hamme 1, Patrick Wambacq 1 1 Dept. ESAT, Katholieke Universiteit Leuven, Belgium

More information