L2F/INESC-ID at Semeval-2017 Tasks 1 and 2: Lexical and Semantic Features in Word and Textual Similarity

Total Page:16

File Type:pdf, Size:1020Kb

L2F/INESC-ID at Semeval-2017 Tasks 1 and 2: Lexical and Semantic Features in Word and Textual Similarity L2F/INESC-ID at SemEval-2017 Tasks 1 and 2: Lexical and semantic features in word and textual similarity Pedro Fialho, Hugo Rodrigues, Lu´ısa Coheur and Paulo Quaresma Spoken Language Systems Lab (L2F), INESC-ID Rua Alves Redol 9 1000-029 Lisbon, Portugal [email protected] Abstract For word similarity, we test semantic equiva- lence functions based on WordNet (Miller, 1995) This paper describes our approach to the and Word Embeddings (Mikolov et al., 2013). Ex- SemEval-2017 “Semantic Textual Similar- periments are performed on test data provided ity” and “Multilingual Word Similarity” in the SemEval-2017 tasks, and yielded compet- tasks. In the former, we test our approach itive results, although outperformed by other ap- in both English and Spanish, and use a proaches in the official ranking. linguistically-rich set of features. These The document is organized as follows: in Sec- move from lexical to semantic features. In tion2 we briefly discuss some related work; in particular, we try to take advantage of the Sections3 and4, we describe our systems regard- recent Abstract Meaning Representation ing the “Semantic Textual Similarity” and “Mul- and SMATCH measure. Although with- tilingual Word Similarity” tasks, respectively. In out state of the art results, we introduce se- Section5 we present the main conclusions and mantic structures in textual similarity and point to future work. analyze their impact. Regarding word sim- ilarity, we target the English language and 2 Related work combine WordNet information with Word Embeddings. Without matching the best The general architecture of our STS system is systems, our approach proved to be simple similar to that of Brychc´ın and Svoboda(2016), and effective. Potash et al.(2016) or Tian and Lan(2016), but we employ more lexical features and AMR semantics. 1 Introduction Brychc´ın and Svoboda(2016) model feature de- pendence in Support Vector Machines by using the In this paper we present two systems that com- product between pairs of features as new features, peted in SemEval-2017 tasks “Semantic Textual while we rely on neural networks. In Potash et al. Similarity” and “Multilingual Word Similarity”, (2016) it is concluded that feature based systems using supervised and unsupervised techniques, re- have better performance than structural learning spectively. with syntax trees. A fully-connected neural net- For the first task we used lexical features, as work is employed on hand engineered features and well as a semantic feature, based in the Ab- on an ensemble of predictions from feature based stract Meaning Representation (AMR) and in the and structural based systems. We also employ a SMATCH measure. AMR is a semantic formal- similar neural network on hand engineered fea- ism, structured as a graph (Banarescu et al., 2013). tures, but use semantic graphs to obtain one of SMATCH is a metric for comparison of AMRs such features. (Cai and Knight, 2013). To the best of our knowl- For word similarity, our approach isolates the edge, these were not yet applied to Semantic Tex- micro view approach seen in (Tian and Lan, 2016), tual Similarity. In this paper we focus on the con- where word embeddings are applied to measure tribution of the SMATCH score as a semantic fea- the similarity of word pairs in an unsupervised ture for Semantic Textual Similarity, relative to a manner. This work also describes supervised ex- model based on lexical clues only. periments on a macro/sentence view, which em- 213 Proceedings of the 11th International Workshop on Semantic Evaluations (SemEval-2017), pages 213–219, Vancouver, Canada, August 3 - 4, 2017. c 2017 Association for Computational Linguistics ploy hand engineered features and the Gradient bytes and tokens of a pair of sentences, except for Boosting algorithm, as in our STS system. the Spectrum kernel on bits (as it is not a valid Henry and Sands(2016) employ WordNet for combination), resulting in 62 of our 159 features. their sentence and chunk similarity metric, as also The only semantic feature is the SMATCH occurs in our system for word similarity. score (Cai and Knight, 2013) which represents the similarity among two AMR graphs (Banarescu 3 Task 1 - Semantic textual similarity et al., 2013). The AMR for each sentence in a pair is generated with JAMR3, and then supplied In this section we describe our participation in to SMATCH, which returns a numeric value be- Task 1 of SemEval-2017 (Cer et al., 2017), aimed tween 0 and 1 denoting their similarity. at assessing the ability of a system to quantify the In SMATCH, an AMR is translated into triples semantic similarity between two sentences, using that represent variable instances, their relations, a continuous value from 0 to 5 where 5 means se- and global attributes such as the start node and lit- mantic equivalence. This task is defined for mono- erals. The final SMATCH score is the maximum lingual and cross-lingual pairs. We participated F score of matching triples, according to various in the monolingual evaluation for English, and we variable mappings, obtained by comparing their also report results for Spanish, both with test sets instance tokens. These are converted into lower composed by 250 pairs. Most of our lexical fea- case and then matched for exact equality. tures are language independent, thus we use the same model. 3.2 Experimental setup For a pair of sentences, our system collects the numeric output of metrics that assess their simi- We applied all metrics to the train, test and trial larity relative to lexical or semantic aspects. Such examples of the SICK corpus (Marelli et al., 2014) features are supplied to a machine learning algo- and train and test examples from previous Seman- rithm to: a) build a model, using pairs labeled with tic Textual Similarity in SemEval, as compiled by an equivalence value (compliant with the task), or Tan et al.(2015). b) predict such value, using the model. Thus, our training dataset is comprised of 24623 vectors (with 9841 from SICK) assigned to a con- 3.1 Features tinuous value ranging from 0 to 5. Each vector contains our 159 feature values for the similarity In our system, the similarity between two sen- among the sentences in an example pair. tences is represented by multiple continuous val- We standardized the features by removing the ues, obtained from metrics designed to leverage mean and scaling to unit variance and norm. Then, lexical or semantic analysis on the comparison of machine learning algorithms were applied to the sequences or structures. Lexical features are also feature sets to train a model of our Semantic Tex- applied to alternative views of the input text, such tual Similarity representations. Namely, we em- as character or metaphone1 sequences. A total of ployed ensemble learning by gradient boosting 159 features was gathered, from which one relies with decision trees, and feedforward neural net- on semantic representations. works (NN) with 1 and 2 fully connected hidden Lexical features are obtained from INESC- layers. ID@ASSIN (Fialho et al., 2016), such as TER, SMATCH is not available for Spanish, therefore edit distance and 17 others. These are applied this feature was left out when evaluating Spanish to 6 representations of an input pair, totaling 96 pairs (es-es). For English pairs (en-en), the sce- features since not all representations are valid on narios include: a) only lexical features, or b) an all metrics (for instance, TER is not applicable on ensemble with lexical features and the SMATCH character trigrams). Its metrics and input represen- score (without differentiation). tations rely on linguistic phenomena, such as the Gradient boosting was applied with the default BLEU score on metaphones of input sentences. configuration provided in scikit-learn (Pedregosa We also gather lexical features from HARRY2, et al., 2011). NN were configured with single and where 21 similarity metrics are calculated for bits, multiple hidden layers, both with a rectifier as ac- 1Symbols representing how a word sounds, according to tivation function. The first layer combines the 159 the Double Metaphone algorithm. 2http://www.mlsec.org/harry/ 3https://github.com/jflanigan/jamr 214 input features (or 158 when not using SMATCH) In order to evaluate the contribution of into 270 neurons, which are either combined into SMATCH, we analyzed some examples where a second layer with 100 neurons, or to the output SMATCH led to a lower deviation from the gold layer (with 1 neuron). Finally, we employed the standard, and, at the same time, higher deviation mean square error cost function and the ADAM from runs without SMATCH. optimizer (Kingma and Ba, 2014), and fit a model On 15 pairs, SMATCH based predictions were in 100 epochs and batches of 5. consistently closer to the gold standard, across all Our experiments were run with Tensorflow 0.11 learning algorithms, with an average difference (Abadi et al., 2015), with NN implementations of 0.27 from non SMATCH predictions. How- 4 from the Keras framework . Gradient boosting ever, after analyzing the resulting AMR of some of implementation is from scikit-learn. these cases, we noticed that information was lost during AMR conversion. For instance, consider 3.3 Results the following examples, which led to the results System performance in the Semantic Textual Sim- presented in Table2. ilarity task was measured with the Pearson coef- ficient. A selection of results is shown in Table 1, featuring our different scenarios/configurations, (A) The player shoots the winning points. / The our official scores (in bold), and systems that basketball player is about to score points for achieved results similar to ours or are the best of his team., with a gold score of 2.8.
Recommended publications
  • Text Analytics 2014: User Perspectives on Solutions and Providers
    Text Analytics 2014: User Perspectives on Solutions and Providers Seth Grimes A market study sponsored by Published July 9, 2014, © Alta Plana Corporation Text Analytics 2014: User Perspectives on Solutions and Providers Table of Contents Executive Summary .............................................................................................................. 3 Growth Drivers ...................................................................................................................................... 4 Key Study Findings ................................................................................................................................ 5 About the Study and this Report ......................................................................................................... 6 Text Analytics Basics ............................................................................................................ 7 Patterns ................................................................................................................................................. 7 Structure ............................................................................................................................................... 7 Metadata ............................................................................................................................................... 8 Beyond Text .........................................................................................................................................
    [Show full text]
  • Conceptnet 5.5: an Open Multilingual Graph of General Knowledge
    Proceedings of the Thirty-First AAAI Conference on Artificial Intelligence (AAAI-17) ConceptNet 5.5: An Open Multilingual Graph of General Knowledge Robyn Speer Joshua Chin Catherine Havasi Luminoso Technologies, Inc. Union College Luminoso Technologies, Inc. 675 Massachusetts Avenue 807 Union St. 675 Massachusetts Avenue Cambridge, MA 02139 Schenectady, NY 12308 Cambridge, MA 02139 Abstract In this paper, we will concisely represent assertions such Machine learning about language can be improved by sup- as the above as triples of their start node, relation label, and plying it with specific knowledge and sources of external in- end node: the assertion that “a dog has a tail” can be repre- formation. We present here a new version of the linked open sented as (dog, HasA, tail). data resource ConceptNet that is particularly well suited to ConceptNet also represents links between knowledge re- be used with modern NLP techniques such as word embed- sources. In addition to its own knowledge about the English dings. term astronomy, for example, ConceptNet contains links to ConceptNet is a knowledge graph that connects words and URLs that define astronomy in WordNet, Wiktionary, Open- phrases of natural language with labeled edges. Its knowl- Cyc, and DBPedia. edge is collected from many sources that include expert- The graph-structured knowledge in ConceptNet can be created resources, crowd-sourcing, and games with a pur- particularly useful to NLP learning algorithms, particularly pose. It is designed to represent the general knowledge in- those based on word embeddings, such as (Mikolov et al. volved in understanding language, improving natural lan- 2013). We can use ConceptNet to build semantic spaces that guage applications by allowing the application to better un- are more effective than distributional semantics alone.
    [Show full text]
  • Text Analytics 2014: User Perspectives on Solutions and Providers
    Text Analytics 2014: User Perspectives on Solutions and Providers Seth Grimes A market study sponsored by Published July 9, 2014, © Alta Plana Corporation Text Analytics 2014: User Perspectives on Solutions and Providers Table of Contents Executive Summary .............................................................................................................. 3 The Survey ............................................................................................................................................................. 5 Key Study Findings ................................................................................................................................................ 5 About the Study and this Report .......................................................................................................................... 6 Text Analytics Basics .............................................................................................................7 Patterns ................................................................................................................................................................. 7 Structure ................................................................................................................................................................ 7 Metadata ............................................................................................................................................................... 8 Beyond Text ..........................................................................................................................................................
    [Show full text]
  • Detecting Semantic Difference: a New Model Based on Knowledge and Collocational Association
    DETECTING SEMANTIC DIFFERENCE: A NEW MODEL BASED ON KNOWLEDGE AND COLLOCATIONAL ASSOCIATION Shiva Taslimipoor1, Gloria Corpas2, and Omid Rohanian1 1Research Group in Computational Linguistics, University of Wolverhampton, UK 2Research Group in Computational Linguistics, University of Wolverhampton, UK and University of Malaga, Spain {shiva.taslimi, omid.rohanian}@wlv.ac.uk [email protected] Abstract Semantic discrimination among concepts is a daily exercise for humans when using natural languages. For example, given the words, airplane and car, the word flying can easily be thought and used as an attribute to differentiate them. In this study, we propose a novel automatic approach to detect whether an attribute word represents the difference between two given words. We exploit a combination of knowledge-based and co- occurrence features (collocations) to capture the semantic difference between two words in relation to an attribute. The features are scores that are defined for each pair of words and an attribute, based on association measures, n-gram counts, word similarity, and Concept-Net relations. Based on these features we designed a system that run several experiments on a SemEval-2018 dataset. The experimental results indicate that the proposed model performs better, or at least comparable with, other systems evaluated on the same data for this task. Keywords: semantic difference · collocation · association measures · n-gram counts · word2vec · Concept-Net relations · semantic modelling. 1. INTRODUCTION Semantic modelling in natural language processing requires attending to both semantic similarity and difference. While similarity is well-researched in the community (Mihalcea & Hassan, 2017), the ability of systems in discriminating between words is an under-explored area (Krebs et al., 2018).
    [Show full text]
  • Text Analytics for Marketing and Customer Experience
    Cold, hard numbers and bright insights from customer comments: Text analytics for marketing and customer experience. Why text analytics? Why now? Introduction When customers are freed to express their thoughts Text analytics has been around for a long time, but in their own words, they reveal more about their only recently has it become automated. In the diagram motivations: they give marketing and customer insight below, we show the broad categories of different teams the “Why” to structured data’s “What?” In the last methods. Manual coding is still taking place, of 3 years, text analytics has successfully made the leap customer satisfaction surveys for example, but it is time from university supercomputer to the office desktop consuming and its accuracy depends on the day-to- and it’s now possible to analyse 10,000 or a million day operations of the team. Automated methods are customers’ comments with full statistical reliability in quicker, more reliable and are now widely preferred. near real-time, and while maintaining enough granularity Text analytics can analyse customer comments from to provide qualitative insights. any source, including CSat surveys, social media, email In this paper, we give an overview of the market and contact centre transcriptions. A recent IBM survey today, we share knowledge from a selection of found that predictive analytics now feature most highly consultants’ work with multi-national brands over on CMOs wish list, with more than half already involved the last 3 years, and we offer advice on how to in using analytics to capture customer insight. 1 avoid expensive dead-ends.
    [Show full text]
  • A Data-Driven Text Mining and Semantic Network Analysis for Design Information Retrieval
    A Data-Driven Text Mining and Semantic Network Analysis for Design Information Retrieval By Feng Shi Imperial College London, Dyson School of Design Engineering A thesis submitted for the degree of Doctor of Philosophy July 2018 1 Abstract Data-Driven Design is an emerging area with the advent of big-data tools. Massive information stored in electronic and digital forms on the internet provides potential opportunities for knowledge discovery in the fields of design and engineering. The aim of the research reported in this thesis is to facilitate the design information retrieval process based on large-scale electronic data through the use of text mining and semantic network techniques. We have proposed a data-driven pipeline for design information retrieval including four elements, from data acquisition, text mining, semantic network analysis, to data visualisation and user interaction. Web crawling techniques are applied to fetch massive online textual data in data acquisition process. The use of text mining enables the transformation of data from unstructured raw texts into a structured semantic network. A retrieval analysis framework is proposed based on the constructed semantic network to retrieve relevant design information and provoke design innovation. Finally, a web-based platform B-Link has been developed to enable user to visualise the semantic network and interact with it through the proposed retrieval analysis framework. Seven case studies were conducted throughout the thesis to investigate the effectiveness and gain insights for each element of the pipeline. Thousands of design post news items and millions of engineering and design peer reviewed papers can be efficiently captured by web crawling techniques.
    [Show full text]
  • NEW-YORK-2017-BROCHURE.Pdf
    THE World’s NUMBER ONE AI EVENT FOR BUSINESS NEW YORK LONDON | HONG KONG | SAN FRANCISCO ZURICH | BOSTON | SINGAPORE | CAPE TOWN 2017 SPONSORS AND PARTNERS The INDUStry PartnerS AI Summit® ARE YOU READY TO LEAD THE AI REVOLUTION? When AIBusiness.com launched as the world’s first AI news portal back in 2014, Artificial DIAMOND SPONSOR Intelligence (AI) was not yet immediately associated with the business world. Fast forward to 2017 and AI is dominating conversations as corporate leaders realise its true potential. Most Fortune 1000 organisations have now embarked on an exciting journey to a business world of unprecedented efficiencies. PLATINUM SPONSORS In 2016, The AI Summit was the first conference globally dedicated to the impact of Artificial Intelligence in business. The event is now part of the only truly global AI event series, with shows in Cape Town, London, Singapore, Boston, San Francisco, New York, Hong Kong and Zurich. The AI Summit New York, showcases America’s pioneers in AI - both the corporates that are putting AI to work every day and their solution provider partners that help them on their transformation journey. Over 100+ speakers will be sharing unique, strategic, technical insights and know-how; every session offers a plurality of views, examples, and tools for maximising the opportunity of AI. Our interactive exhibition features 45+ of the most innovative solution providers showcasing everything from chat-bots and ML applications, to AR/VR. Major tech giants are joined by enthusiastic start-ups, all in the race to create the next ground-breaking AI product GOLD SPONSOR to transform the world of work.
    [Show full text]
  • Learning Multilingual Word Embeddings in Latent Metric Space: a Geometric Approach
    Learning Multilingual Word Embeddings in Latent Metric Space: A Geometric Approach Pratik Jawanpuria1, Arjun Balgovind2∗, Anoop Kunchukuttan1, Bamdev Mishra1 1Microsoft, India 2IIT Madras, India 1fpratik.jawanpuria,ankunchu,[email protected] [email protected] Abstract different languages are mapped close to each other in a common embedding space. Hence, We propose a novel geometric approach for they are useful for joint/transfer learning and learning bilingual mappings given monolin- sharing annotated data across languages in gual embeddings and a bilingual dictionary. Our approach decouples the source-to-target different NLP applications such as machine language transformation into (a) language- translation (Gu et al., 2018), building bilingual specific rotations on the original embeddings dictionaries (Mikolov et al., 2013b), mining par- to align them in a common, latent space, and allel corpora (Conneau et al., 2018), text clas- (b) a language-independent similarity met- sification (Klementiev et al., 2012), sentiment ric in this common space to better model analysis (Zhou et al., 2015), and dependency the similarity between the embeddings. Over- parsing (Ammar et al., 2016). all, we pose the bilingual mapping prob- lem as a classification problem on smooth Mikolov et al. (2013b) empirically show that a Riemannian manifolds. Empirically, our ap- linear transformation of embeddings from one proach outperforms previous approaches on language to another preserves the geometric ar- the bilingual lexicon induction and cross- rangement of word embeddings. In a supervised lingual word similarity tasks. setting, the transformation matrix, W, is learned We next generalize our framework to rep- given a small bilingual dictionary and their resent multiple languages in a common latent corresponding monolingual embeddings.
    [Show full text]
  • Deep Text Is an Approach to Text Analytics That Adds Depth and Intelligence to Our Ability to Utilize a Growing Mass of Unstructured Text
    DEEP “One of the most thorough walkthroughs of text analytics ever provided.” —Jeff Catlin, CEO, Lexalytics TEXT Deep text is an approach to text analytics that adds depth and intelligence to our ability to utilize a growing mass of unstructured text. In this book, author Tom Reamy explains what deep text is and surveys its many uses and benefits. DEEP Reamy describes applications and development best practices, discusses business issues including ROI, provides how-to advice and instruction, and offers Data to Big Big(ger) Text and Add Media, Social From Get RealValue Overload, to Conquer Information USING TEXT ANALYTICS guidance on selecting software and building a text analytics capability within an organization. Whether you need to harness a flood of social media content or turn a mountain of business information into an organized and useful asset, Deep Text will supply the TEXTUSING TEXT ANALYTICS insights and examples you’ll need to do it effectively. to Conquer Information Overload, Get Real Value From Social Media, “Sheds light on all facets of text analytics. Comprehensive, entertaining and Add Big(ger) Text to Big Data and enlightening.” —Fiona R. McNeill, Global Product Marketing Manager, SAS “Reamy takes the text analytics bull by the horns and gives it the time and exposure it deserves.” —Bryan Bell, VP of Global Marketing, Expert System REAMY “I highly recommend Deep Text as required reading for those whose work involves any form of unstructured content.” —Jim Wessely, President, Advanced Document Sciences $59.50 TOM REAMY DEEP TEXT Praise for Deep Text “Remarkably useful—a must-read for anyone trying to understand text analytics and how to apply it in the real world.” —Jeff Fried, CTO, BA Insight “A much-needed publication around the largely misunderstood field of text analytics … I highly recommend Deep Text as required reading for those whose work involves any form of unstructured content.” —Jim Wessely, President, Advanced Document Sciences “Sheds light on all facets of text analytics.
    [Show full text]
  • Tech Trends 2014 Inspiring Disruption Contents
    Tech Trends 2014 Inspiring Disruption Contents Introduction | 2 Disruptors CIO as venture capitalist | 6 Cognitive analytics | 18 Industrialized crowdsourcing | 30 Digital engagement | 42 Wearables | 54 Enablers Technical debt reversal | 66 Social activation | 78 Cloud orchestration | 88 In-memory revolution | 100 Real-time DevOps | 112 Exponentials | 124 Appendix | 136 Tech Trends 2014: Inspiring Disruption Introduction ELCOME to Deloitte’s fifth annual Technology Trends report. Each year, we study the ever- Wevolving technology landscape, focusing on disruptive trends that are transforming business, government, and society. Once again, we’ve selected 10 topics that have the opportunity to impact organizations across industries, geographies, and sizes over the next 18 to 24 months. The theme of this year’s report is Inspiring Disruption. In it, we discuss 10 trends that exemplify the unprecedented potential for emerging technologies to reshape how work gets done, how businesses grow, and how markets and industries evolve. These disruptive technologies challenge CIOs to anticipate their potential organizational impacts. And while today’s demands are by no means trivial, the trends we describe offer CIOs the opportunity to shape tomorrow—to inspire others, to create value, and to transform “business as usual.” The list of trends is developed using an ongoing process of primary and secondary research that involves: • Feedback from client executives on current and future priorities • Perspectives from industry and academic luminaries • Research by alliance partners, industry analysts, and competitor positioning • Crowdsourced ideas and examples from our global network of practitioners As in prior years, we’ve organized the trends into two categories. Disruptors are areas that can create sustainable positive disruption in IT capabilities, business operations, and sometimes even business models.
    [Show full text]
  • Natural Language Processing and Machine Learning As Practical
    Natural Language Processing and Machine Learning as Practical Toolsets for Archival Processing Tim Hutchinson University Archives and Special Collections, University of Saskatchewan, Saskatoon, Canada Records Management Journal, Special Issue: Technology and records management: disrupt or be disrupted? Volume 30, Issue 2, https://doi.org/10.1108/RMJ-09-2019-0055 Abstract Purpose – This study aims to provide an overview of recent efforts relating to natural language processing (NLP) and machine learning applied to archival processing, particularly appraisal and sensitivity reviews, and propose functional requirements and workflow considerations for transitioning from experimental to operational use of these tools. Design/methodology/approach – The paper has four main sections. 1) A short overview of the NLP and machine learning concepts referenced in the paper. 2) A review of the literature reporting on NLP and machine learning applied to archival processes. 3) An overview and commentary on key existing and developing tools that use NLP or machine learning techniques for archives. 4) This review and analysis will inform a discussion of functional requirements and workflow considerations for NLP and machine learning tools for archival processing. Findings – Applications for processing e-mail have received the most attention so far, although most initiatives have been experimental or project based. It now seems feasible to branch out to develop more generalized tools for born-digital, unstructured records. Effective NLP and machine learning tools for archival processing should be usable, interoperable, flexible, iterative and configurable. Originality/value – Most implementations of NLP for archives have been experimental or project based. The main exception that has moved into production is ePADD, which includes robust NLP features through its named entity recognition module.
    [Show full text]
  • Text Analytics by Business Analytics Specialization
    For Private Circulation Only DATA GEEK SCHOOL OF BUSINESS AND MANAGEMENT TEXT ANALYTICS BY BUSINESS ANALYTICS SPECIALIZATION VOLUME 3 | ISSUE1 | APRIL 2021 FROM THE EDITOR'S DESK Information is the oil of the 21st century, and analytics is the combustion engine.” – Peter Sondergaard, Senior Vice President, Gartner Research. Text analytics is the technique to extract relevant information from unstructured textual data. It facilitates business to discover patterns and themes that aids in understanding the customers needs and expectations. Businesses can improve customer satisfaction by learning what their customers like and dislike about their products, detect product issues, conduct market research, and monitor brand reputation. Emails, online reviews, tweets, call centre agent notes, survey results, and other forms of written feedback all contain text data that can be used for analysis. With this, we present an enthralling Volume 3 Issue 1 of DataGeek newsletter, centered on a pivotal theme of Text Analytics. It includes interesting articles and capstone projects done on text analytics by the BA specialization students. Team would like to extend sincere thanks and gratitude to Mr. Mohammad Shoaib, founder & CEO of Lumiq for his industry insights. It also has crossword on concepts of text analytics. For the first time, the aptitude section has been introduced to motivate and help students practice for upcoming placements. I would like to extend gratitude to our Dean, Dr. Jain Mathew, Associate Deans Dr. Georgy Kurien and Dr. Jeevananda S, Head of Specialization – BA, Dr. Lakshmi Shankar Iyer for their guidance in making this issue a success. Also, a special appreciation to the newsletter team for the effort, time and inputs without which this issue would not have been possible.
    [Show full text]