Sentiment Analysis of Dravidian Code Mixed Data

Total Page:16

File Type:pdf, Size:1020Kb

Sentiment Analysis of Dravidian Code Mixed Data Sentiment Analysis of Dravidian Code Mixed Data Asrita Venkata Mandalam Yashvardhan Sharma Department of CSIS Department of CSIS BITS Pilani, Pilani Campus BITS Pilani, Pilani Campus Rajasthan, India Rajasthan, India f20171179 yash @pilani.bits-pilani.ac.in @pilani.bits-pilani.ac.in Abstract an interest in analysing the sentiment of the con- This paper presents the methodologies im- tent posted by them. As code-mixed data does plemented while classifying Dravidian code- not belong to one language and is often written mixed comments according to their polar- using Roman script, identifying its polarity can- ity. With datasets of code-mixed Tamil and not be done using traditional sentiment analysis Malayalam available, three methods are pro- models(Puranik et al., 2021; Hegde et al., 2021; posed - a sub-word level model, a word em- Yasaswini et al., 2021; Ghanghor et al., 2021b,a). bedding based model and a machine learn- In social media, low-resourced languages such as ing based architecture. The sub-word and Tamil and Malayalam have been increasingly used word embedding based models utilized Long Short Term Memory (LSTM) network along along with English (Thavareesan and Mahesan, with language-specific preprocessing while 2019, 2020a,b). Indian government declared Tamil the machine learning model used term fre- as classical language in 2004, meaning that it meets quency–inverse document frequency (TF-IDF) three criteria: its sources are old; it has an inde- vectorization along with a Logistic Regression pendent tradition; and it has a significant body of model. The sub-word level model was sub- ancient literature. The most ancient non-Sanskritic mitted to the the track ‘Sentiment Analysis Indian literature is found in Tamil. The earliest ex- for Dravidian Languages in Code-Mixed Text’ proposed by Forum of Information Retrieval isting Tamil literary works and their commentaries Evaluation in 2020 (FIRE 2020). Although commemorate the organisation of long-term Tamil it received a rank of 5 and 12 for the Tamil Sangams (600 BCE to 300 CE) by the Pandiyan and Malayalam tasks respectively in the FIRE Rulers, which studied, established and made im- 2020 track, this paper improves upon the re- provements in the language of Tamil. Identifying sults by a margin to attain final weighted F1- the sentiment of this data can prove to be useful scores of 0.65 for the Tamil task and 0.68 for in social media monitoring and feedback of users the Malayalam task. The former score is equiv- towards other online content. alent to that attained by the highest ranked team of the Tamil track. The ‘Sentiment Analysis for Dravidian Lan- guages in Code-Mixed Text’ task proposed 1 Introduction by FIRE 2020 (Chakravarthi et al., 2020c; Code-mixing usually involves two languages to cre- Chakravarthi, 2020) contains a code-mixed dataset ate another language that consists of elements of consisting of comments from social media web- both in a structurally understandable manner. It sites for both Tamil and Malayalam. Each team has been noted that bilingual and multilingual soci- had to submit a set of predicted sentiments for the eties use multiple languages together in informal Tamil-English and Malayalam-English mixed test speech and text. Dravidian code-mixed languages, sets (Chakravarthi et al., 2020d). Along with lan- including but not limited to Malayalam and Tamil, guage specific preprocessing techniques, the imple- are increasingly used by younger generations in mented model made use of sub-word level repre- advertising, entertainment and social media. The sentations to incorporate features at the morpheme language is commonly written in Roman script. level, the smallest meaningful unit of any language. With the rise in the number of non-English and Evaluated by weighted average F1-score, the sub- multilingual speakers using social media, there is word level approach achieved the 5th highest score 46 Proceedings of the First Workshop on Speech and Language Technologies for Dravidian Languages, pages 46–54 April 20, 2021 ©2021 Association for Computational Linguistics in the Tamil task and the 12th rank in the Malay- of the same corpus.Yadav and Chakraborty(2020) alam task (Sharma and Mandalam, 2020). used multilingual embeddings to identify the sen- This paper presents the aforementioned model timent of code-mixed text. As they used an unsu- and two more models - a word embedding based pervised approach, they performed sentiment anal- model and a machine learning model in an attempt ysis by using the embeddings to transfer knowl- to improve upon the submitted weighted F1-scores. edge from monolingual text to their code-mixed The highest scoring model for the Tamil dataset input. Yadav et al.(2020) designed an ensemble received a score equivalent to the highest scoring model consisting of four classifiers - Naive Bayes, model presented at the Sentiment Analysis for Dra- Support-Vector Machines (SVM), Linear Regres- vidian Languages in Code-Mixed Text track of sion, and Stochastic Gradient Descent (SGD) clas- FIRE 2020. Although they achieved it using a sifiers. They tested it on a Hindi-English code-mix Bidirectional Encoder Representations from Trans- dataset and managed to surpass the scores attained formers (BERT) based model, the model presented by the baseline and state-of-art systems. in this paper uses Word2Vec and FastText embed- The proposed models test three approaches - sub- dings to achieve the same score. The implemented word analysis, word-level embeddings and machine models are available on Github1. learning algorithm based classification. The top few submissions submitted at the ‘Sentiment Anal- 2 Related Work ysis for Dravidian Languages in Code-Mixed Text’ task proposed by FIRE 2020 (Chakravarthi et al., Analysing the sentiment of code-mixed data is im- 2020c) used BERT-based models. This work aims portant as traditional methods fail when given such to attain the same F1-score with help of non-BERT- data. Barman et al.(2014) concluded that n-grams based approaches. As Dravidian code-mixed lan- proved to be useful in their experiments that in- guages are under-resourced, this paper also de- volved multiple languages with Roman script. scribes the preprocessing methods used to aid in the Bojanowski et al.(2017) used character n-grams sentiment classification of comments that contain in their skip-gram model. The lack of preprocess- both Roman and Tamil/Malayalam characters. ing resulted in a shorter training time and outper- formed baselines that did not consider sub-word 3 Dataset information. Joshi et al.(2016) outperformed ex- isting systems as well by using a sub-word based The model has been trained, validated and tested LSTM architecture. Their dataset consisted of 15% using the Tamil (Chakravarthi et al., 2020b) and negative, 50% neutral and 35% positive comments. Malayalam (Chakravarthi et al., 2020a) datasets As their dataset was imbalanced like the one used provided by the organizers of the Dravidian Code- in this paper, the submitted approach involved mor- Mix FIRE 2020 task. The Tamil code-mix dataset pheme extraction as it would help in identifying consists of 11,335 comments for the train set, 1,260 the polarity of the dataset. Using a hybrid archi- for the validation set and 3,149 comments for test- tecture, Lal et al.(2019) an F1-score of 0.827 on ing the model. In the Malayalam code-mix dataset, the Hindi-English dataset released by Joshi et al. there are 4,851 comments for training, 541 for val- (2016). After generating the sub-word level in- idating and 1,348 for testing the model. Table1 formation of the input data, they used one Bidi- gives the distribution of each sentiment in each rectional LSTM to figure out the sentiment of the dataset. given sentence and another to select the sub-words 4 Proposed Technique that contributed to the overall sentiment of the sen- tence. 4.1 Sub-word level model In more recent work, Jose et al.(2020) surveyed The submitted approach used a sub-word level publicly available code-mixed datasets. They noted model as it accounts for words that have a simi- statistics about each dataset such as vocabulary size lar morpheme. For example, in the Tamil dataset, and sentence length. Priyadharshini et al.(2020) Ivan, Ivanga and Ivana have similar meanings due used embeddings of closely related languages of to their root word Ivan. the code-mixed corpus to predict Named Entities First, the dataset is preprocessed to replace all 1https://github.com/avmand/SA_ emojis with their corresponding description in En- Dravidian glish. As the dataset contains both Roman and 47 Dataset Positive Negative Mixed Feelings Unknown State Other Languages Tamil 10,559 2,037 1,801 850 497 Malayalam 2,811 738 403 1,903 884 Table 1: Distribution of Data in the Tamil and Malayalam Dataset Tamil (or Malayalam) characters, the latter is re- create an embedding matrix. For the classification placed with its corresponding Roman script repre- of the input data, two LSTM layers were used after sentation. the embedding layer. The dimensionality of the From the preprocessed data, a set of characters output space of the first and second LSTM layers was obtained. The input to the model is a set of were 64 and 32 repectively. Similar to the previous character embeddings. The sub-word level repre- model, batch normalization and early stopping sentation is generated through a 1-D convolution were used with the model automatically stopping layer with activation as ReLU, size of convolutional training after 5 epoch cycles. window as 5 and number of output filters as 128. After getting a morpheme-level feature map, a 1-D 4.3 Machine Learning model maximum pooling layer is used to obtain its most Till now, all of the tested models used deep learning prominent features.
Recommended publications
  • Spoken Indian Language Identification: a Review of Features and Databases
    Sådhanå (2018) 43:53 © Indian Academy of Sciences https://doi.org/10.1007/s12046-018-0841-ySadhana(0123456789().,-volV)FT3](0123456789().,-volV) Spoken Indian language identification: a review of features and databases BAKSHI AARTI1,* and SUNIL KUMAR KOPPARAPU2 1 Department of Electronics and Communication, UMIT, SNDT University, Mumbai 400020, India 2 TCS Innovation Labs - Mumbai, TATA Consultancy Services, Yantra Park, Thane 400606, India e-mail: [email protected]; [email protected] MS received 14 October 2015; revised 10 April 2017; accepted 19 February 2018; published online 12 April 2018 Abstract. Spoken language is one of the distinctive characteristics of the human race. Spoken language processing is a branch of computer science that plays an important role in human–computer interaction (HCI), which has made remarkable advancement in the last two decades. This paper reviews and summarizes the acoustic, phonetic and prosody features that have been used for spoken language identification specifically for Indian languages. In addition, we also review the speech databases, which are already available for Indian languages and can be used for the purposes of spoken language identification. Keywords. SLID; phonetic; characteristics; features. 1. Introduction and phonotactics associated with speech are widely used in automatic SLID task [1]. Spoken language is the most natural mode of communi- Speech features are a compact representation and/or cation in today’s world, especially given the advances that parameterization of the raw acoustic speech signal. have happened in the area of automatic speech recognition Acoustic features extracted from the speech signal have (ASR). However, to achieve good ASR performance in been widely used for SLID.
    [Show full text]
  • PARITOSH BARMAN Selected Publications: 1) Indian Federalism
    PARITOSH BARMAN Assistant Professor Department of Political Science Cooch Behar Panchannan Barma University, West Bengal & Doctoral Fellow Department of Political Science Raiganj University, Uttar Dinajpur, West Bengal. Email: [email protected] Area of Interest: Modern India thought and Thinkers, Ghandhian Thought & Ideology, Indian Democracy : Issues & Challenges, Rajbanshi Community and culture, Issues and Movement in India, Development Administration in India: Issues & Performance, Swami Vivekanada’s thought and Ideology. Academic Qualification: Registered Ph.D, 3 Year (UGC), Department of Political Science, Raiganj University, Uttar Dinajpur, West Bengal. Research Topic: Social Reformers and Sarvodaya Activists in India: A critical study of Ideologies of Acharya Vinoba Bhave and Jayprakash Narayan , Supervisor: Dr. Sumita Sinha. Master of Arts in Political Science from IGNOU (first class), 2009. Bachelor of Arts (Honors) in Political Science from NBU, 2006. Bachelor of Arts in Education 2 Years (IGNOU) from Gangarampur B.ed College (first class), 2012. Selected Publications: 1) Indian Federalism, The Present Experience, “Election and Corruption in Indian Federation, Edited by Jitndra Shahoo , Levant Books, Kolkata, pp.57-65. 2) Women, Society and Politics, A study of South Asia: Tribal Women Empowerment through Political Participation in Indian Representative Democracy: A critical Analysis, Edited by Prasenjit Saha, Avenel Press, Kolkata, pp.291-301. 3) Transition In Ideas and Actions in Modern Age: In The 21st Century, Electoral Corruptions in India: A critical study, Edited by Gour Chandra Ghosh, Progressive Publication, Kolkata. Paper presented in International Seminar, Conference: a) Two days International Conference on Politics, Administration and Society in One World, organized by Bengal Institute of Political Studies, Kolkata: Topic- Sarvodaya Activist in Post-Independence India: A critical study of political thought of JP and Vinoba Bhave.
    [Show full text]
  • Threatened and Endemic Fishes of Tripura with Comments on Their Conservation
    Rec. zool. Surv. India: 103 (Part 1-2) : 75-81,2004 THREATENED AND ENDEMIC FISHES OF TRIPURA WITH COMMENTS ON THEIR CONSERVATION R. P. BARMAN Zoological Survey of India, FPS Building, Kolkata-700 016, India INTRODUCTION Tripura is a hilly state located in the sub-Himalayan region of the North-East India. It is surrounded on the North, West, South-East by Bangladesh (Erswhile East Pakistan). In the East of this state it has a common boundary with Assam and Mizoram. Physiographically, this state represents the western fringe of the typical ridge and valley structural province of the late Tertiary fold mountain belt, generally known as the Indo-Burmese Ranges or Purbachal Ranges. A perusal of the existing literature, viz., Datta (1977), Nair (1977), Lipton (1983-84), Bhattacharya (1988) and Barman (1988, 1989, 1990, 1991, 1992, 1994 & 2002) on the fish fauna of Tripura shows that this state harbours 129 species of fishes under 78 genera, 33 families· and 11 orders. The diagnostic features of all these 129 species of fishes along with a short description of the state with reference to its fisheries aspect, topography and drainage pattern of the river systems of Tripura have been provided by the present author in a separate publication (Barman, 2002). The fishes of this state have been reviewed in respect of its threatened species. The threatened species of this state has been designated as per Molur and Walker (1998) and Menon (1999). Out of these 129 species this state contains 28 vulnerable, 10 endangered and 4 rare species of fishes of India.
    [Show full text]
  • YUN@HASOC-Dravidian-Codemix-FIRE2020: a Multi-Component Sentiment Analysis Model for Offensive Language Identification
    YUN@HASOC-Dravidian-CodeMix-FIRE2020: A Multi-component Sentiment Analysis Model for Offensive Language Identification Kunjie Donga, Yao Wanga aSchool of Information, Yunnan University, Yunnan, Kunming, 650504, P.R. China Abstract The research of discerning the offensive language formatted with code-mixed in social media has awide range of applications in mining the available information to provide powerful assistance for sentiment analysis. This paper describes all of our work on the HASOC-Offensive Language Identification Dravidian Code-Mix FIRE 2020 tasks, which includes a message-level classification task that classifying a YouTube comment in Code-mixed Malayalam into the offensive (OFF) or Not-offensive (NOT) language, and another message-level label classification task that classifying a Tweet or YouTube comment in Tanglish and Manglish (Tamil and Malayalam using Roman Characters) into the offensive or Not-offensive language. As far as we know, this is the first shared task on offensive language in Dravidian Code-Mixed text. To achieve this goal, in this paper, we propose an ensemble model which makes full use of the information of rich sequential patterns. More precisely, the proposed model contains a self-attention based on the BiLSTM and the sub-word representation learning. Experimental results of our model on the Malayalam-English of subtask 1, Tamil-English and Malayalam-English of subtask 2 have achieved the F1 values of 0.93, 0.85 and 0.67, respectively, and ranked 3rd, 5th, 9th, respectively. Keywords Sentiment analysis, Offensive language identification, Code-mixed Text, Dravidian languages 1. Introduction Social networks as a popular medium or platform play an indispensable role in our life, which can provide the convenient service for the users, i.e., transmit and receive message.
    [Show full text]
  • Arxiv:2106.09460V1 [Cs.CL] 17 Jun 2021
    Language Resources and Evaluation Journal manuscript No. (will be inserted by the editor) DravidianCodeMix: Sentiment Analysis and Offensive Language Identification Dataset for Dravidian Languages in Code-Mixed Text Bharathi Raja Chakravarthi1 ⋅ Ruba Priyadharshini2 ⋅ Vigneshwaran Muralidaran3 ⋅ Navya Jose4 ⋅ Shardul Suryawanshi1 ⋅ Elizabeth Sherly4 ⋅ John P. McCrae1 Received: date / Accepted: date Abstract This paper describes the development of a multilingual, manually anno- tated dataset for three under-resourced Dravidian languages generated from social media comments. The dataset was annotated for sentiment analysis and offensive lan- guage identification for a total of more than 60,000 YouTube comments. The dataset consists of around 44,000 comments in Tamil-English, around 7,000 comments in Kannada-English, and around 20,000 comments in Malayalam-English. The data was manually annotated by volunteer annotators and has a high inter-annotator agreement in Krippendorff’s alpha. The dataset contains all types of code-mixing phenomena Bharathi Raja Chakravarthi* E-mail: [email protected] Ruba Priyadharshini E-mail: [email protected] Vigneshwaran Muralidaran E-mail: [email protected] Navya Jose E-mail: [email protected] Shardul Suryawanshi E-mail: [email protected] Elizabeth Sherly E-mail: [email protected] John P. McCrae E-mail: [email protected] 1Insight SFI Research Centre for Data Analytics, Data Science Institute, National University of Ireland Galway, Galway, Ireland arXiv:2106.09460v1 [cs.CL] 17 Jun 2021 2ULTRA Arts and Science College, Madurai, Tamil Nadu, India 3School of Computer Science and Informatics, Cardiff University, Cardiff, United Kingdom 4Indian Institute of Information Technology and Management-Kerala, Kerala, India 2 Chakravarthi et al since it comprises user-generated content from a multilingual country.
    [Show full text]
  • The Heritage and Culture of Tripura Are Vast and Vivid Because of the Large Number of Races Residing in the State from the Ancient Period
    Heritage and the Legacy of Tripura: A Gift from the Older Generations The heritage and culture of Tripura are vast and vivid because of the large number of races residing in the state from the ancient period. Every community has its own set of customs and traditions which it passes on to its younger generation. However, some of our customs and traditions remain the same throughout the state of Tripura . The heritage of Tripura is a beautiful gift from the older generation that helped the residents of Tripura to build a harmonious society. Preservation of the rich heritage of Tripura will certainly bring prosperity for the entire state of Tripura . Tripura is an ancient princely State ,blessed with a beautiful heritage. The citizens of Tripura are fortunate to have the same and the future generations would be immensely benefitted as they get the opportunity to see and experience the same. It is quite relevant to mention that the Radcliffe Line was the boundary demarcation line between the Indian and Bangladeshi portions of the Bengal provinces of British India. It was named after Sir Cyril Radcliffe, who, was the joint chairman of the boundary commission for the two province. This demarcation line was published on 17 August 1947 upon the Partition of India. The Partition of India is one of the central events in the collective memory in India, Bangladesh and as well as for the people of Tripura. As a crucial determiner in the outcomes of the partition, the Radcliffe Line and award process had significantly reduced the total land area as governed by the then Princely Tripura State.
    [Show full text]
  • Improving Wordnets for Under-Resourced Languages Using Machine Translation Bharathi Raja Chakravarthi, Mihael Arcan, John P
    Improving Wordnets for Under-Resourced Languages Using Machine Translation Bharathi Raja Chakravarthi, Mihael Arcan, John P. McCrae Insight Centre for Data Analytics National University of Ireland Galway Galway, Ireland [email protected] , [email protected], [email protected] Abstract individual words. Wordnets can be constructed by either the merge or the expand approach (Vossen, Wordnets are extensively used in natural 1997). Princeton WordNet (Miller, 1995; Fell- language processing, but the current ap- baum, 2010) was manually created within Prince- proaches for manually building a word- ton University covering the vocabulary in En- net from scratch involves large research glish language only. Then, based on the Prince- groups for a long period of time, which are ton WordNet, wordnets for several languages were typically not available for under-resourced created. As an example, EuroWordNet (Vossen, languages. Even if wordnet-like resources 1997) is a multilingual lexical database for sev- are available for under-resourced lan- eral European languages, structured in the same guages, they are often not easily accessi- way as Princeton’s WordNet. The Multiword- ble, which can alter the results of applica- net (Pianta et al., 2002) is strictly aligned with tions using these resources. Our proposed Princeton WordNet and allows to access senses method presents an expand approach for in Italian, Spanish, Portuguese, Hebrew, Roma- improving and generating wordnets with nian and Latin language. Many others have fol- the help of machine translation. We ap- lowed for different languages. The IndoWordNet ply our methods to improve and extend (Bhattacharyya, 2010) was compiled for eighteen wordnets for the Dravidian languages, i.e., out of the twenty-two official languages of India Tamil, Telugu, Kannada, which are sev- and made available for public use.
    [Show full text]
  • Regional Languages Centres
    REGIONAL LANGUAGES CENTRES Sl Programme Coordinator Amount Total Remarks I-QUARTER ( APRIL– JUNE) April 2010 None MAY 2010 EASTERN REGIONAL LANGUAGE CENTRE, BHUABANESWAR 1. Workshop for finalization of Bengali script reader, Bhubaneswar C. Hazra 15,000 2. Workshop for preparation of script reader in Maithili, Bhubaneswar Principal 25,000 3. Workshop for preparation of script reader in Santali, Bhubaneswar Principal 25,000 4. Workshop for compilation of Rajbanshi-Bengali-English dictionary, Jalpaiguri C. Hazra 75,000 URDU TEACHING AND RESEARCH CENTRE , SOLAN 5. Multi-Lingual useful Glossary Jog Raj 72,000 212,000 JUNE 2010 EASTERN REGIONAL LANGUAGE CENTRE, BHUABANESWAR 6. Workshop for editing Nepali short stories translated into Bengali, Bhubaneswar S.N. Barman 35,000 7. Refresher course in Bangla, Kolkata/Bhubaneswar M. Das 75,000 8. Refresher course in Maithili, Bhubaneswar 75,000 9. Refresher course in Santali, Bhubaneswar 75,000 10. Refresher course in Oriya, Bhubaneswar 5,000 NORTH EASTERN REGIONAL LANGUAGE CENTRE, GUWAHATI 11. Orientation Course Programme for Nepali Language Teachers of Primary School (Private) of Darjeeling, Bhamati Devi 75,000 Southfield College, Darjeeling WESTERN REGIONAL LANGUAGE CENTRE, PUNE 12. Workshop on finalization of Advanced course in Konkani, Pune Prinicipal 75,000 13. Workshop on finalization of Trilingual dictionary in Gujarati-Konkani-English in collaboration with Konkani Prinicipal 75,000 department, Goa university, Goa SOUTHERN REGIONAL LANGUAGES CENTRE, MYSORE 14. Finalization of Malayalam Kannada Bilingual Dictionary Last Phase , Mysore V.S.Nair 75,000 URDU TEACHING AND RESEARCH CENTRE , SOLAN 15. Experts meeting on “Classification of Bibliography” of Library books” of UTRC, Solan Principal 45,000 16.
    [Show full text]
  • List of Selected Candidates Belonging to SC Category for Award Of
    List of selected candidates belonging to SC category for award of fellowship for the year 2013-14 under the scheme of Rajiv Gandhi National Fellowship for SC Candidates during financial year 2013-14 Name of S.No. Candidate ID Domicile State Address of Candidate District Gender Category PH Place of Research Subject Candidate ADDANKI AMARAVATHID/O CHINA RGNF-2013- Andhra AMARAVATHI NARASANNASAMISRAGUDE WEST GODAVARI ANDHRA 1 14-SC-AND- Female SC No TELUGU Pradesh ADDANKI M [POST]NIDADAVOLU DISTRICT UNIVERSITY 54732 [MANDALAM]WEST GODAVARI DISTRICTANDHRA C/O G. VEERAIAHROOM RGNF-2013- NO:45- I-BLOCKSVU HOSTELS Andhra ANAKARLA Sri Venkateswara 2 14-SC-AND- FOR CHITTOOR Female SC No English Pradesh JHANSI RANI University 40586 MENS.V.UNIVERSITYTIRUPAT I - 517502 TIRUPATI 517502 ANIL KUMAR BOBBILI.C/O RGNF-2013- PROF P.BHANUMURTHY- Andhra ANIL KUMAR ANDHRA 3 14-SC-AND- DEPT OF GEOLOGY-ANDHRA VISAKHAPATNAM Male SC No GEOLOGY Pradesh BOBBILI UNIVERSITY 36816 UNIVERSITY- VISAKHAPATNAM 530003 H.NO. 2-32/23- RGNF-2013- VILL:KAMMUNOOR- MDL: Andhra University of 4 14-SC-AND- ANIL KUMAR P SARANGAPOOR- DIST: KARIMNAGAR Male SC No Telugu Pradesh Hyderabad 46361 KARIMNAGAR- PIN: 505454 JAGITIAL 505454 17-1-382/K/6/B/24 BALAJI RGNF-2013- Andhra ANIL KUMAR NAGARCHAMPAPET 5 14-SC-AND- HYDERABAD Male SC No Yet to be decided POWER SYSTEMS Pradesh YARAMALA SAIDABAD HYDERABAD 50566 500059 D. ANITHA D/O MALLAIAH[V] RGNF-2013- Andhra ANITHA TALLASINGARAM[M] JNTUH CHEMICAL 6 14-SC-AND- NALGONDA Female SC No Pradesh DONAKONDA CHOTUPPAL[D] NALGONDA HYDERABAD ENGINEERING 51608 NALGONDA 508252 RGNF-2013-14-SC 1 of 334 PAGES RGNF-2013-14-SC List of selected candidates belonging to SC category for award of fellowship for the year 2013-14 under the scheme of Rajiv Gandhi National Fellowship for SC Candidates during financial year 2013-14 Name of S.No.
    [Show full text]
  • Influence of Native and Non-Native Multitalker Babble on Speech Recognition in Noise Chandni Jain, Sreeraj Konadath, Bharathi M
    Audiology Research 2014; volume 4:89 Influence of native and non-native multitalker babble on speech recognition in noise Chandni Jain, Sreeraj Konadath, Bharathi M. Vimal, Vidhya Suresh Department of Audiology, All India Institute of Speech and Hearing, Manasagangothri, Mysore, India needed to assess speech recognition in Malayalam listeners in the Abstract presence of other non-native backgrounds of various types. The aim of the study was to assess speech recognition in noise using multitalker babble of native and non-native language at two dif- ferent signal to noise ratios. The speech recognition in noise was Introduction assessed on 60 participants (18 to 30 years) with normal hearing sen- sitivity, having Malayalam and Kannada as their native language. For Perception of speech is the ability of the listener to perceive the this purpose, 6 and 10 multitalker babble were generated in Kannada acoustic waveform produced by a speaker as a string of meaningful and Malayalam language. Speech recognition was assessed for native words and ideas and attend to it.1 Comprehensive understanding of listeners of both the languages in the presence of native and non- speech depends on various noise conditions like, signal to noise ratio native multitalker babble. Results showed that the speech recognition (SNR) and types of backgroundonly noise. Speech recognition in noise is in noise was significantly higher for 0 dB signal to noise ratio (SNR) clinically used to assess the auditory functions in individuals with compared to -3 dB SNR for both the languages. Performance of hearing sensitivity within normal limits and with hearing loss. Kannada Listeners was significantly higher in the presence of native Speech recognition in noise is affected by two types of processes, (Kannada) babble compared to non-native babble (Malayalam).
    [Show full text]
  • List of Selected Candidates Belonging to SC Category for Award Of
    List of selected candidates belonging to SC category for award of fellowship for the year 2014-15 under the scheme of Rajiv Gandhi National Fellowship for SC Candidates during financial year 2014-15 S.No. Candidate ID Domicile State/UT Name of applicant Gender Category PH Place of Research Subject The use of mobile devices in the health domain (known as RGNF-2014-15-SC- 1 Andhra Pradesh ROOPARECHAL TANIKONDA Female SC No Yet to be decided mHealth) to access the AND-76693 Electronic Health Record is gaining significant attention RGNF-2014-15-SC- 2 Andhra Pradesh OWK MRUDULA Female SC No ANDHRA UNIVERSITY IMAGE PROCESSING AND-75775 RGNF-2014-15-SC- 3 Andhra Pradesh GOUTHAMI PULICHERLA Female SC No Yet to be decided Digital Signal Processing AND-58480 RGNF-2014-15-SC- 4 Andhra Pradesh M S S SWATHI Female SC No Yet to be decided Biotechnology AND-77991 RGNF-2014-15-SC- 5 Andhra Pradesh SUNEETHA BULLA Female SC No Yet to be decided networking AND-72241 RGNF-2014-15-SC- 6 Andhra Pradesh RANI KATTUPALLI Female SC No Andhra University Nano Biotechnology AND-58476 RGNF-2014-15-SC- 7 Andhra Pradesh VEERAKUMARI MAMIDI Female SC No ANDHRA UNIVERSITY NETWORKS AND-58299 RGNF-2014-15-SC- 8 Andhra Pradesh KUMARI GUBBALA Female SC No Yet to be decided Computer Science AND-83281 ISRO-NATIONAL SIGNAL PROCESSING RGNF-2014-15-SC- ATMOSPHERIC 9 Andhra Pradesh CHERUKURI SRUTHI Female SC No TECHNIQUES IN LIDAR AND-79398 RESEARCH TECHNOLOGY LABORATORY (NARL) RGNF-2014-15-SC- pharmacy(pharmaceutical 10 Andhra Pradesh JANIPALLI ANU PRAVALLIKA Female SC No andhra
    [Show full text]
  • Corpus Creation for Sentiment Analysis in Code-Mixed Tamil-English Text
    Corpus Creation for Sentiment Analysis in Code-Mixed Tamil-English Text Bharathi Raja Chakravarthi1,Vigneshwaran Muralidaran2, Ruba Priyadharshini3, John P. McCrae1 1Insight SFI Research Centre for Data Analytics, Data Science Institute, National University of Ireland Galway, fbharathi.raja, [email protected] 2School of English, Communication and Philosophy, Cardiff University, [email protected] 3Saraswathi Narayanan College, Madurai, India, [email protected] Abstract Understanding the sentiment of a comment from a video or an image is an essential task in many applications. Sentiment analysis of a text can be useful for various decision-making processes. One such application is to analyse the popular sentiments of videos on social media based on viewer comments. However, comments from social media do not follow strict rules of grammar, and they contain mixing of more than one language, often written in non-native scripts. Non-availability of annotated code-mixed data for a low-resourced language like Tamil also adds difficulty to this problem. To overcome this, we created a gold standard Tamil-English code-switched, sentiment-annotated corpus containing 15,744 comment posts from YouTube. In this paper, we describe the process of creating the corpus and assigning polarities. We present inter-annotator agreement and show the results of sentiment analysis trained on this corpus as a benchmark. Keywords: code mixed, Tamil, sentiment, corpus, dataset 1. Introduction (2016) and without annotating the word level language Sentiment analysis has become important in social media tag. The instructions enabled light and speedy annotation research (Yang and Eisenstein, 2017). Until recently these while maintaining consistency.
    [Show full text]