SlideShare a Scribd company logo
International Journal in Foundations of Computer Science & Technology (IJFCST), Vol. 3, No.5, September 2013
DOI:10.5121/ijfcst.2013.3504 35
OPTIMIZATION OF CROSS DOMAIN SENTIMENT
ANALYSIS USING SENTIWORDNET
K Paramesha1
and K C Ravishankar2
1
Department of Computer Science & Engg, Vidyavardhaka College of Engg., Mysore,
India
2
Department of Computer Science & Engg, Government Engineering College, Hassan,
India
ABSTRACT
The task of sentiment analysis of reviews is carried out using manually built / automatically generated
lexicon resources of their own with which terms are matched with lexicon to compute the term count for
positive and negative polarity. On the other hand the Sentiwordnet, which is quite different from other
lexicon resources that gives scores (weights) of the positive and negative polarity for each word. The
polarity of a word namely positive, negative and neutral have the score ranging between 0 to 1 indicates
the strength/weight of the word with that sentiment orientation. In this paper, we show that using the
Sentiwordnet, how we could enhance the performance of the classification at both sentence and document
level.
KEYWORDS
Optimization, Sentiment analysis, Cross Domain, Genetic algorithm, Fine-grained, Sentiwordnet.
1. INTRODUCTION
The rapid strides made in the area of web technologies facilitated the customers to share their
experiences of using the products (consumer products, books, movies…) across the globe. Such
products could be purchased from vendors by the customers via online. These customers being
the brand ambassadors of the products share their opinions (customer reviews) about product on
suitable platform which will serve as feedback on products. The reviews are helpful to other
prospective buyers who are planning to buy the products and the product manufacturing
companies to make strategic decisions on products based upon the reviews. The present form of
web provides multiple platforms such are blog spots, review forums etc. There are also different
styles of rendering the feedback.
1) Rating: The overall product utility feedback is rate for a range (1-5) stars with 1 star
being negative remark and 5 stars for positive remark. The rating sometimes made
2) Thumbs up/down: The positive feedback is indicated as thumbs up (+1) and negative
for thumbs down (-1)
3) Text Review: The detailed elaborate user experience is scripted using natural language
which is quite ambiguous in nature.
International Journal in Foundations of Computer Science & Technology (IJFCST), Vol. 3, No.5, September 2013
36
2. CROSS DOMAIN REVIEWS
The cross domain reviews refer to the collection of reviews on items, captured from different
domains such as BOOK, DVDS, VIDEOGAMES ... Empirically it is observed that different
words express sentiment in different domains. As mentioned in [2], same words may have
different polarity in different domains. Difference in vocabularies across different domains also
adds to the difficulty when applying classifiers trained on labeled data in one domain to test data
in another. On employing a sentiment classifier, trained for a particular domain to classify
sentiment of user reviews of a different domain often results in poor performance because words
that occur in the train (source) domain might not appear in the test (target) domain [4]. In the
electronics domain, we may use words like “compact”, “sharp” to express our positive sentiment
and use “blurry” to express our negative sentiment. While in the video game domain, words like
“hooked”, “realistic” indicate positive opinion and the word “boring” indicates negative opinion.
In effect, with such of the words, the performance of the sentiment is greatly affected by the
sentiment score.
3. DATA SET
The fine-grained sentiment dataset contains 294 product reviews from various online sources
manually annotated with sentence level sentiment by Oscar and Ryan McDonald. The data is
approximately balanced with respect to domain (books, DVDs, electronics, music, and
videogames) and overall review sentiment (positive, negative, and neutral). In this work we
considered only positive and negative reviews dataset. The dataset is available at [6]. The details
of the review data set at document level and sentence level are furnished below in tabel1 and
tabel2 respectively.
Table 1. Distribution of review documents
Polarity
Domain
Total
Books Dvds Electronics Music
Video
Games
Positive
Review 19 19 19 20 20 97
Negative
Review 29 20 19 20 20 99
International Journal in Foundations of Computer Science & Technology (IJFCST), Vol. 3, No.5, September 2013
37
Table 2. Distribution of review sentences
Polarity
Domain Total
Books Dvds Electronics Music
Video
Games
Positive
Review 160 164 161 183 255 923
Negative
Review 195 264 240 176 442 1320
4. SENTIWORDNET
Sentiwordnet is a lexical resource for opinion mining. Sentiwordnet assigns to each synset of
WordNet three sentiment scores: positivity, negativity, objectivity [1]. In this work we use
SENTIWORDNET 3.0[3] which is an improved version of SENTIWORDNET 1.0, a lexical
resource explicitly devised for supporting sentiment classification and opinion mining
applications.
5. PREVIOUS WORK
Using the sentiwordnet, [8] the common approach is based on term counting of both orientations.
Sentiwordnet scores were calculated as positive and negative terms were found on each document
and used to determine sentiment orientation by assigning the document to the class with the
highest score. Further, using supervised learning methods, different aspects of text as sources of
features have been proposed in the literature.
A total of 96 distinct features were generated based on the scores of positive and negative terms,
for each parts-of-speech. The result of classification using feature set is slightly more than the
term count result. The best result is just below 70%.
Applying the technique used by Brendan Tierney in [8], positive and negative scores for each
review were calculated by counting positive and negative words, and then the sentiment polarity
was determined by assigning the review to the class with the highest score. This method yielded
an overall accuracy of 56.77%, with results detailed in the table
Sums on Review Positive and negative scores for each review were calculated using ‘Sum on
Review’ technique as mentioned in [9] with various thresholds. This method yielded the results
with the best accuracy of 67% at threshold 0.
Positive and negative scores for each review were calculated using Average on Sentence and
Average on Review technique as mentioned in section 4 with various thresholds. This method
yielded an overall accuracy of68.63%at threshold0.The results are detailed in table3
6. OPTIMIZATION USING EVOLUTIONARY METHODS
For the optimization of classification, we consider an application of genetic algorithm (GA)
which computes the weights of features. In prediction tasks, usually the datasets containing a
large number of records and features that will be processed using, for example, created
International Journal in Foundations of Computer Science & Technology (IJFCST), Vol. 3, No.5, September 2013
38
classification rules. Without pre-processing the dataset, i.e. without pre-weighting the attributes
results in classification error. To counter the problem, GA is applied to find for each feature the
weight that would reduce classification error value [7]. We perform the weighting of features
with an evolutionary strategies approach using the variance of the Gaussian additive mutation
adapted by a 1/5-rule. This rule [5] states that the ratio of successful mutations to all mutations
should be 1/5, hence if the ration is greater than 1/5, the step size should be increased otherwise
decreased.
x’i=xi + N (0, σ (t)) (1)
Where N (0, σ (t)) is a random Gaussian number with mean zero and mutation step σ(t) is the
function of tth
generation. The simplest method is to specify the mutation mechanism is to use the
same σ (t) for all vectors in the population, for all variables for each vector. This will decrease
slowly form weight 1 of parameters at the beginning of the run (t=0) to 0.1 as t approaches to the
T generations. Using this mechanism, changes in the parameter values are based on the feedback
from the fitness test and σ(t) adaptation happens at very n generations. Such decreases may assist
the fine tuning capabilities of the algorithm.
7. EXPERIMENTAL SETUP
The feature vector is generated using the Sentiwordnet 3.0 lexical resources as done in the
[8].The details of feature extract is tabled below. The sentences of review documents are POS
tagged using Stanford Tagger utility to identify the POS of words. These tagged words are then
produced to the sentiwordnet 3.0 to generate positive and negative scores for the feature vector.
The five different types of classifiers are applied for the sentiment analysis at document level and
sentence level, with and without optimization of weights.
Table 3. Distribution of Feature Vector derived from SentiWordNet
Category
Features Count
Sentence
Level
Sum of positive and negative scores and term count for Adjectives.
Sum of positive and negative scores and term count for Adverbs.
Sum of positive and negative scores and term count for Verbs.
Sum of positive and negative scores and term count for Nouns.
16
Ratio of overall score per total terms found, for each part of speech. 8
Sum of positive and negative scores and term count. 4
Ratio of overall score per total terms found, for positive and negative words. 2
Ratio of positive and negative scores.
Ratio of positive and negative terms.
2
Document
Level
Summation of all features over sentences 32
International Journal in Foundations of Computer Science & Technology (IJFCST), Vol. 3, No.5, September 2013
39
Figure 1. Steps Involved in Sentiment Analysis both at Sentence Level and Document Level
8. EXPERIMENT RESULT
Table 4. Experiment Results for Document Level Analysis (10-fold Cross Validation)
Document Level
classifier
Without Optimization With Optimization
Accuracy Precision Accuracy Precision
Svm 65 73 72 81
Naïve Bayes 58 67 60 72
Decision Tree 43 38 52 67
Linear Regression 66 68 72 73
Logistic Regression 66 78 71 78
International Journal in Foundations of Computer Science & Technology (IJFCST), Vol. 3, No.5, September 2013
40
Table 5. Experiment Results for Sentence Level Analysis (10-fold Cross Validation)
Sentence Level
classifier
Without Optimization With Optimization
Accuracy Precision Accuracy Precision
SVM 63 64 64 64
Naïve Bayes 63 56 54 58
Decision Tree 59 58 59 58
Linear Regression 65 62 66 63
Logistic Regression 65 67 65 68
9. DISCUSSION
On comparing the results obtained of this research and previous work results using sentiwordnet,
validates that sentiwordnet could yield accuracy of 65%-75% with 10-fold cross validation, but
from our observation, with single testing of whole weighted dataset and validation (without split
validation) yields outstanding results which imply maximum convergence of machine learning
algorithm. On other hand if the same optimized weighted data set is subjected to the 10-fold cross
validation, the results were considerable lower due to overfitting and noise in the data set.
10. CONCLUSION
The experiment results shown implicate two important inferences, which are, validating the
efficiency of the sentiwordnet in discriminating the polarity of words both at sentence level and
document level and second is the optimization techniques could lead to slightly better results for
certain type of classifications. With the distinguishing ability of sentiwordnet for cross domain
words, in future work we would like to use features extracted from the sentiwordnet as a
compliment to other feature set derived from other techniques.
REFERENCES
[1] Bo Pang1 and Lillian Lee2Foundations and Trends in Information Retrieval Vol. 2, Nos. 1–2 (2008)
1–13
[2] S. Zhou, S. Zhang, and G. Karypis (Eds.): ADMA 2012, LNAI 7713, pp. 577–588, 2012.c_Springer-
Verlag Berlin Heidelberg (2012)
[3] Baccianella, Stefano, Andrea Esuli, and Fabrizio Sebastiani. (2010).SentiWordNet 3.0: An enhanced
Lexical resource for sentiment analysis and opinion mining. In Proceedings of the Seventh
Conference on International Language Resources and Evaluation (LREC’10), pages 2200–2204,
Valletta.
[4] Cross-Domain Sentiment Classification viaSpectral Feature Alignment Sinno Jialin Pany, Xiaochuan
Niz, Jian-Tao Sunz, Qiang Yangy and Zheng Chenzy Department of Computer Science and
Engineering Hong Kong University of Science and Technology, Hong Kong Microsoft Research
Asia, Beijing, P. R. China
[5] Eiben, Agoston Endre, Robert Hinterding, and Zbigniew Michalewicz. "Parameter control in
evolutionary algorithms." Evolutionary Computation, IEEE Transactions on 3.2 (1999): 124-141.
[6] http://www.sics.se/people/oscar/datasets
International Journal in Foundations of Computer Science & Technology (IJFCST), Vol. 3, No.5, September 2013
41
[7] Scientific Journal of Riga Technical University. Computer Sciences. Volume 40, Issue -1, Pages 123–
128, ISSN (Print) 1407-7493, DOI:10.2478/v10143-010-0017-7, March (2010)
[8] Ohana, B., Tierney, B. Sentiment classification of reviews using SentiWordNet. 9th. IT&T
Conference, Dublin Institute of Technology, Dublin, Ireland, 22nd.-23rd. October, (2009).
[9] A. Hamouda and M. Rohaim. Reviews Classification Using SentiWordNet Lexicon. World Congress
on Computer Science and Information Technology, January, (2011).
Authors
K.PARAMESHA
Assoc. Professor
Dept. of CSE, VVCE,
Mysore, India
Studied BE in Computer Science (Bangalore university), M.Tech in Network Engineering (VTU,
Belgaum). Have been working as a faculty in Dept. Of Computer Science at VVCE since 2000 and actively
perusing PhD course in the area of Sentiment analysis.
Dr K.C.RAVISHANKAR
Professor & HOD
Dept. of CSE,
Govt. Engineering College
Hassan, India
He has obtained BE in Computer Science and Engineering from Mysore University, M.Tech in Computer
Science and Engineering from IIT, Delhi and doctorate from VTU, Belgaum in Computer Science and
Engineering. He has 23 years of teaching experience. He served as Professor at Malnad College of
Engineering Hassan. Presently working as Professor & HOD at Govt. Engineering College Hassan,
Karnataka. His area of interest include Image Processing, Information security, Computer Network and
Databases. He has presented a number of research papers at National and International conferences.
Delivered invited talks and key note addresses at reputed institutions. He has served as chairperson and
reviewer for conferences and currently guiding three PhD scholars.

More Related Content

What's hot

Malhotra14
Malhotra14Malhotra14
Evidential reasoning based decision system to select health care location
Evidential reasoning based decision system to select health care locationEvidential reasoning based decision system to select health care location
Evidential reasoning based decision system to select health care location
IJAAS Team
 
IRJET - Sentiment Analysis for Marketing and Product Review using a Hybrid Ap...
IRJET - Sentiment Analysis for Marketing and Product Review using a Hybrid Ap...IRJET - Sentiment Analysis for Marketing and Product Review using a Hybrid Ap...
IRJET - Sentiment Analysis for Marketing and Product Review using a Hybrid Ap...
IRJET Journal
 
Amazon Product Review Sentiment Analysis with Machine Learning
Amazon Product Review Sentiment Analysis with Machine LearningAmazon Product Review Sentiment Analysis with Machine Learning
Amazon Product Review Sentiment Analysis with Machine Learning
ijtsrd
 
Rating System Algorithms Document
Rating System Algorithms DocumentRating System Algorithms Document
Rating System Algorithms Document
Scandala Tamang
 
Statistics
StatisticsStatistics
Statistics
DataScience14
 
200 chapter 7 measurement :scaling by uma sekaran
200 chapter 7 measurement :scaling by uma sekaran 200 chapter 7 measurement :scaling by uma sekaran
200 chapter 7 measurement :scaling by uma sekaran
Irfan Sheikh
 
Moviereview prjct
Moviereview prjctMoviereview prjct
Moviereview prjct
ShubhamSiddhartha
 
Analysis of Textual Data Classification with a Reddit Comments Dataset
Analysis of Textual Data Classification with a Reddit Comments DatasetAnalysis of Textual Data Classification with a Reddit Comments Dataset
Analysis of Textual Data Classification with a Reddit Comments Dataset
AdamBab
 
Aspect mining and sentiment association
Aspect mining and sentiment associationAspect mining and sentiment association
Aspect mining and sentiment association
Koushik Ramachandra
 
A scalable, lexicon based technique for sentiment analysis
A scalable, lexicon based technique for sentiment analysisA scalable, lexicon based technique for sentiment analysis
A scalable, lexicon based technique for sentiment analysis
ijfcstjournal
 
Sentiment analysis of tweets using Neural Networks
Sentiment analysis of tweets using Neural NetworksSentiment analysis of tweets using Neural Networks
Sentiment analysis of tweets using Neural NetworksAdrián Palacios Corella
 
FEATURE SELECTION AND CLASSIFICATION APPROACH FOR SENTIMENT ANALYSIS
FEATURE SELECTION AND CLASSIFICATION APPROACH FOR SENTIMENT ANALYSISFEATURE SELECTION AND CLASSIFICATION APPROACH FOR SENTIMENT ANALYSIS
FEATURE SELECTION AND CLASSIFICATION APPROACH FOR SENTIMENT ANALYSIS
mlaij
 
project sentiment analysis
project sentiment analysisproject sentiment analysis
project sentiment analysissneha penmetsa
 
Sentiment classification for product reviews (documentation)
Sentiment classification for product reviews (documentation)Sentiment classification for product reviews (documentation)
Sentiment classification for product reviews (documentation)
Mido Razaz
 
Q01741118123
Q01741118123Q01741118123
Q01741118123
IOSR Journals
 
Measurement and scaling noncomparative scaling technique
Measurement and scaling noncomparative scaling techniqueMeasurement and scaling noncomparative scaling technique
Measurement and scaling noncomparative scaling technique
Rohit Kumar
 
Enhancing Multi-Aspect Collaborative Filtering for Personalized Recommendation
Enhancing Multi-Aspect Collaborative Filtering for Personalized RecommendationEnhancing Multi-Aspect Collaborative Filtering for Personalized Recommendation
Enhancing Multi-Aspect Collaborative Filtering for Personalized Recommendation
Nurfadhlina Mohd Sharef
 
Towards Purposeful Reuse of Semantic Datasets Through Goal-Driven Summarization
Towards Purposeful Reuse of Semantic Datasets Through Goal-Driven SummarizationTowards Purposeful Reuse of Semantic Datasets Through Goal-Driven Summarization
Towards Purposeful Reuse of Semantic Datasets Through Goal-Driven Summarization
Panos Alexopoulos
 

What's hot (20)

Malhotra14
Malhotra14Malhotra14
Malhotra14
 
Evidential reasoning based decision system to select health care location
Evidential reasoning based decision system to select health care locationEvidential reasoning based decision system to select health care location
Evidential reasoning based decision system to select health care location
 
IRJET - Sentiment Analysis for Marketing and Product Review using a Hybrid Ap...
IRJET - Sentiment Analysis for Marketing and Product Review using a Hybrid Ap...IRJET - Sentiment Analysis for Marketing and Product Review using a Hybrid Ap...
IRJET - Sentiment Analysis for Marketing and Product Review using a Hybrid Ap...
 
Amazon Product Review Sentiment Analysis with Machine Learning
Amazon Product Review Sentiment Analysis with Machine LearningAmazon Product Review Sentiment Analysis with Machine Learning
Amazon Product Review Sentiment Analysis with Machine Learning
 
Rating System Algorithms Document
Rating System Algorithms DocumentRating System Algorithms Document
Rating System Algorithms Document
 
Statistics
StatisticsStatistics
Statistics
 
200 chapter 7 measurement :scaling by uma sekaran
200 chapter 7 measurement :scaling by uma sekaran 200 chapter 7 measurement :scaling by uma sekaran
200 chapter 7 measurement :scaling by uma sekaran
 
Moviereview prjct
Moviereview prjctMoviereview prjct
Moviereview prjct
 
Analysis of Textual Data Classification with a Reddit Comments Dataset
Analysis of Textual Data Classification with a Reddit Comments DatasetAnalysis of Textual Data Classification with a Reddit Comments Dataset
Analysis of Textual Data Classification with a Reddit Comments Dataset
 
Aspect mining and sentiment association
Aspect mining and sentiment associationAspect mining and sentiment association
Aspect mining and sentiment association
 
A scalable, lexicon based technique for sentiment analysis
A scalable, lexicon based technique for sentiment analysisA scalable, lexicon based technique for sentiment analysis
A scalable, lexicon based technique for sentiment analysis
 
Sentiment analysis of tweets using Neural Networks
Sentiment analysis of tweets using Neural NetworksSentiment analysis of tweets using Neural Networks
Sentiment analysis of tweets using Neural Networks
 
FEATURE SELECTION AND CLASSIFICATION APPROACH FOR SENTIMENT ANALYSIS
FEATURE SELECTION AND CLASSIFICATION APPROACH FOR SENTIMENT ANALYSISFEATURE SELECTION AND CLASSIFICATION APPROACH FOR SENTIMENT ANALYSIS
FEATURE SELECTION AND CLASSIFICATION APPROACH FOR SENTIMENT ANALYSIS
 
project sentiment analysis
project sentiment analysisproject sentiment analysis
project sentiment analysis
 
Sentiment classification for product reviews (documentation)
Sentiment classification for product reviews (documentation)Sentiment classification for product reviews (documentation)
Sentiment classification for product reviews (documentation)
 
Q01741118123
Q01741118123Q01741118123
Q01741118123
 
FSRM 582 Project
FSRM 582 ProjectFSRM 582 Project
FSRM 582 Project
 
Measurement and scaling noncomparative scaling technique
Measurement and scaling noncomparative scaling techniqueMeasurement and scaling noncomparative scaling technique
Measurement and scaling noncomparative scaling technique
 
Enhancing Multi-Aspect Collaborative Filtering for Personalized Recommendation
Enhancing Multi-Aspect Collaborative Filtering for Personalized RecommendationEnhancing Multi-Aspect Collaborative Filtering for Personalized Recommendation
Enhancing Multi-Aspect Collaborative Filtering for Personalized Recommendation
 
Towards Purposeful Reuse of Semantic Datasets Through Goal-Driven Summarization
Towards Purposeful Reuse of Semantic Datasets Through Goal-Driven SummarizationTowards Purposeful Reuse of Semantic Datasets Through Goal-Driven Summarization
Towards Purposeful Reuse of Semantic Datasets Through Goal-Driven Summarization
 

Viewers also liked

Práctica 3 observacion de minerales pptx
Práctica 3 observacion de minerales pptxPráctica 3 observacion de minerales pptx
Práctica 3 observacion de minerales pptx
Quimicaequipo6g765
 
SIMULATION AND ANALYSIS OF AODV, DSDV, ZRP IN VANET
SIMULATION AND ANALYSIS OF AODV, DSDV, ZRP IN VANETSIMULATION AND ANALYSIS OF AODV, DSDV, ZRP IN VANET
SIMULATION AND ANALYSIS OF AODV, DSDV, ZRP IN VANET
ijfcstjournal
 
Informe de la repetición de curso 2013 14
Informe de la repetición de curso 2013 14Informe de la repetición de curso 2013 14
Informe de la repetición de curso 2013 14
IES La Flota
 
JAVA 2013 IEEE PROJECT A fast clustering based feature subset selection algor...
JAVA 2013 IEEE PROJECT A fast clustering based feature subset selection algor...JAVA 2013 IEEE PROJECT A fast clustering based feature subset selection algor...
JAVA 2013 IEEE PROJECT A fast clustering based feature subset selection algor...
IEEEGLOBALSOFTTECHNOLOGIES
 
IND-ENG-75831-2013
IND-ENG-75831-2013IND-ENG-75831-2013
IND-ENG-75831-2013icandfc
 
GA-CFS APPROACH TO INCREASE THE ACCURACY OF ESTIMATES IN ELECTIONS PARTICIPATION
GA-CFS APPROACH TO INCREASE THE ACCURACY OF ESTIMATES IN ELECTIONS PARTICIPATIONGA-CFS APPROACH TO INCREASE THE ACCURACY OF ESTIMATES IN ELECTIONS PARTICIPATION
GA-CFS APPROACH TO INCREASE THE ACCURACY OF ESTIMATES IN ELECTIONS PARTICIPATION
ijfcstjournal
 
13205129 pss7
13205129 pss713205129 pss7
13205129 pss713205129
 

Viewers also liked (8)

Práctica 3 observacion de minerales pptx
Práctica 3 observacion de minerales pptxPráctica 3 observacion de minerales pptx
Práctica 3 observacion de minerales pptx
 
SIMULATION AND ANALYSIS OF AODV, DSDV, ZRP IN VANET
SIMULATION AND ANALYSIS OF AODV, DSDV, ZRP IN VANETSIMULATION AND ANALYSIS OF AODV, DSDV, ZRP IN VANET
SIMULATION AND ANALYSIS OF AODV, DSDV, ZRP IN VANET
 
Informe de la repetición de curso 2013 14
Informe de la repetición de curso 2013 14Informe de la repetición de curso 2013 14
Informe de la repetición de curso 2013 14
 
JAVA 2013 IEEE PROJECT A fast clustering based feature subset selection algor...
JAVA 2013 IEEE PROJECT A fast clustering based feature subset selection algor...JAVA 2013 IEEE PROJECT A fast clustering based feature subset selection algor...
JAVA 2013 IEEE PROJECT A fast clustering based feature subset selection algor...
 
IND-ENG-75831-2013
IND-ENG-75831-2013IND-ENG-75831-2013
IND-ENG-75831-2013
 
GA-CFS APPROACH TO INCREASE THE ACCURACY OF ESTIMATES IN ELECTIONS PARTICIPATION
GA-CFS APPROACH TO INCREASE THE ACCURACY OF ESTIMATES IN ELECTIONS PARTICIPATIONGA-CFS APPROACH TO INCREASE THE ACCURACY OF ESTIMATES IN ELECTIONS PARTICIPATION
GA-CFS APPROACH TO INCREASE THE ACCURACY OF ESTIMATES IN ELECTIONS PARTICIPATION
 
13205129 pss7
13205129 pss713205129 pss7
13205129 pss7
 
Кривоногов
КривоноговКривоногов
Кривоногов
 

Similar to OPTIMIZATION OF CROSS DOMAIN SENTIMENT ANALYSIS USING SENTIWORDNET

An Approach for Big Data to Evolve the Auspicious Information from Cross-Domains
An Approach for Big Data to Evolve the Auspicious Information from Cross-DomainsAn Approach for Big Data to Evolve the Auspicious Information from Cross-Domains
An Approach for Big Data to Evolve the Auspicious Information from Cross-Domains
IJECEIAES
 
Sentence level sentiment polarity calculation for customer reviews by conside...
Sentence level sentiment polarity calculation for customer reviews by conside...Sentence level sentiment polarity calculation for customer reviews by conside...
Sentence level sentiment polarity calculation for customer reviews by conside...
eSAT Publishing House
 
Analysis of Opinionated Text for Opinion Mining
Analysis of Opinionated Text for Opinion MiningAnalysis of Opinionated Text for Opinion Mining
Analysis of Opinionated Text for Opinion Mining
mlaij
 
Business recommendation based on collaborative filtering and feature engineer...
Business recommendation based on collaborative filtering and feature engineer...Business recommendation based on collaborative filtering and feature engineer...
Business recommendation based on collaborative filtering and feature engineer...
IJECEIAES
 
Sentiment Analysis: A comparative study of Deep Learning and Machine Learning
Sentiment Analysis: A comparative study of Deep Learning and Machine LearningSentiment Analysis: A comparative study of Deep Learning and Machine Learning
Sentiment Analysis: A comparative study of Deep Learning and Machine Learning
IRJET Journal
 
INFORMATION RETRIEVAL FROM TEXT
INFORMATION RETRIEVAL FROM TEXTINFORMATION RETRIEVAL FROM TEXT
INFORMATION RETRIEVAL FROM TEXT
ijcseit
 
A Survey On Sentiment Analysis Of Movie Reviews
A Survey On Sentiment Analysis Of Movie ReviewsA Survey On Sentiment Analysis Of Movie Reviews
A Survey On Sentiment Analysis Of Movie Reviews
Shannon Green
 
unit-5.pdf
unit-5.pdfunit-5.pdf
unit-5.pdf
Jayaprasanna4
 
IRJET- Sentimental Analysis for Students’ Feedback using Machine Learning App...
IRJET- Sentimental Analysis for Students’ Feedback using Machine Learning App...IRJET- Sentimental Analysis for Students’ Feedback using Machine Learning App...
IRJET- Sentimental Analysis for Students’ Feedback using Machine Learning App...
IRJET Journal
 
Sentiment Analysis Using Hybrid Approach: A Survey
Sentiment Analysis Using Hybrid Approach: A SurveySentiment Analysis Using Hybrid Approach: A Survey
Sentiment Analysis Using Hybrid Approach: A Survey
IJERA Editor
 
Supervised Sentiment Classification using DTDP algorithm
Supervised Sentiment Classification using DTDP algorithmSupervised Sentiment Classification using DTDP algorithm
Supervised Sentiment Classification using DTDP algorithm
IJSRD
 
An Improved sentiment classification for objective word.
An Improved sentiment classification for objective word.An Improved sentiment classification for objective word.
An Improved sentiment classification for objective word.
IJSRD
 
Opinion mining of movie reviews at document level
Opinion mining of movie reviews at document levelOpinion mining of movie reviews at document level
Opinion mining of movie reviews at document level
ijitjournal
 
Opinion mining on newspaper headlines using SVM and NLP
Opinion mining on newspaper headlines using SVM and NLPOpinion mining on newspaper headlines using SVM and NLP
Opinion mining on newspaper headlines using SVM and NLP
IJECEIAES
 
An Approach To Sentiment Analysis
An Approach To Sentiment AnalysisAn Approach To Sentiment Analysis
An Approach To Sentiment Analysis
Sarah Morrow
 
Analyzing Sentiment Of Movie Reviews In Bangla By Applying Machine Learning T...
Analyzing Sentiment Of Movie Reviews In Bangla By Applying Machine Learning T...Analyzing Sentiment Of Movie Reviews In Bangla By Applying Machine Learning T...
Analyzing Sentiment Of Movie Reviews In Bangla By Applying Machine Learning T...
Andrew Parish
 
ENTERTAINMENT CONTENT RECOMMENDATION SYSTEM USING MACHINE LEARNING
ENTERTAINMENT CONTENT RECOMMENDATION SYSTEM USING MACHINE LEARNINGENTERTAINMENT CONTENT RECOMMENDATION SYSTEM USING MACHINE LEARNING
ENTERTAINMENT CONTENT RECOMMENDATION SYSTEM USING MACHINE LEARNING
IRJET Journal
 
Using Hybrid Approach Analyzing Sentence Pattern by POS Sequence over Twitter
Using Hybrid Approach Analyzing Sentence Pattern by POS Sequence over TwitterUsing Hybrid Approach Analyzing Sentence Pattern by POS Sequence over Twitter
Using Hybrid Approach Analyzing Sentence Pattern by POS Sequence over Twitter
IRJET Journal
 

Similar to OPTIMIZATION OF CROSS DOMAIN SENTIMENT ANALYSIS USING SENTIWORDNET (20)

An Approach for Big Data to Evolve the Auspicious Information from Cross-Domains
An Approach for Big Data to Evolve the Auspicious Information from Cross-DomainsAn Approach for Big Data to Evolve the Auspicious Information from Cross-Domains
An Approach for Big Data to Evolve the Auspicious Information from Cross-Domains
 
Sentence level sentiment polarity calculation for customer reviews by conside...
Sentence level sentiment polarity calculation for customer reviews by conside...Sentence level sentiment polarity calculation for customer reviews by conside...
Sentence level sentiment polarity calculation for customer reviews by conside...
 
Analysis of Opinionated Text for Opinion Mining
Analysis of Opinionated Text for Opinion MiningAnalysis of Opinionated Text for Opinion Mining
Analysis of Opinionated Text for Opinion Mining
 
Business recommendation based on collaborative filtering and feature engineer...
Business recommendation based on collaborative filtering and feature engineer...Business recommendation based on collaborative filtering and feature engineer...
Business recommendation based on collaborative filtering and feature engineer...
 
Sentiment Analysis: A comparative study of Deep Learning and Machine Learning
Sentiment Analysis: A comparative study of Deep Learning and Machine LearningSentiment Analysis: A comparative study of Deep Learning and Machine Learning
Sentiment Analysis: A comparative study of Deep Learning and Machine Learning
 
INFORMATION RETRIEVAL FROM TEXT
INFORMATION RETRIEVAL FROM TEXTINFORMATION RETRIEVAL FROM TEXT
INFORMATION RETRIEVAL FROM TEXT
 
A Survey On Sentiment Analysis Of Movie Reviews
A Survey On Sentiment Analysis Of Movie ReviewsA Survey On Sentiment Analysis Of Movie Reviews
A Survey On Sentiment Analysis Of Movie Reviews
 
unit-5.pdf
unit-5.pdfunit-5.pdf
unit-5.pdf
 
IRJET- Sentimental Analysis for Students’ Feedback using Machine Learning App...
IRJET- Sentimental Analysis for Students’ Feedback using Machine Learning App...IRJET- Sentimental Analysis for Students’ Feedback using Machine Learning App...
IRJET- Sentimental Analysis for Students’ Feedback using Machine Learning App...
 
Sentiment Analysis Using Hybrid Approach: A Survey
Sentiment Analysis Using Hybrid Approach: A SurveySentiment Analysis Using Hybrid Approach: A Survey
Sentiment Analysis Using Hybrid Approach: A Survey
 
Supervised Sentiment Classification using DTDP algorithm
Supervised Sentiment Classification using DTDP algorithmSupervised Sentiment Classification using DTDP algorithm
Supervised Sentiment Classification using DTDP algorithm
 
Lac presentation
Lac presentationLac presentation
Lac presentation
 
An Improved sentiment classification for objective word.
An Improved sentiment classification for objective word.An Improved sentiment classification for objective word.
An Improved sentiment classification for objective word.
 
Opinion mining of movie reviews at document level
Opinion mining of movie reviews at document levelOpinion mining of movie reviews at document level
Opinion mining of movie reviews at document level
 
Opinion mining on newspaper headlines using SVM and NLP
Opinion mining on newspaper headlines using SVM and NLPOpinion mining on newspaper headlines using SVM and NLP
Opinion mining on newspaper headlines using SVM and NLP
 
228-SE3001_2
228-SE3001_2228-SE3001_2
228-SE3001_2
 
An Approach To Sentiment Analysis
An Approach To Sentiment AnalysisAn Approach To Sentiment Analysis
An Approach To Sentiment Analysis
 
Analyzing Sentiment Of Movie Reviews In Bangla By Applying Machine Learning T...
Analyzing Sentiment Of Movie Reviews In Bangla By Applying Machine Learning T...Analyzing Sentiment Of Movie Reviews In Bangla By Applying Machine Learning T...
Analyzing Sentiment Of Movie Reviews In Bangla By Applying Machine Learning T...
 
ENTERTAINMENT CONTENT RECOMMENDATION SYSTEM USING MACHINE LEARNING
ENTERTAINMENT CONTENT RECOMMENDATION SYSTEM USING MACHINE LEARNINGENTERTAINMENT CONTENT RECOMMENDATION SYSTEM USING MACHINE LEARNING
ENTERTAINMENT CONTENT RECOMMENDATION SYSTEM USING MACHINE LEARNING
 
Using Hybrid Approach Analyzing Sentence Pattern by POS Sequence over Twitter
Using Hybrid Approach Analyzing Sentence Pattern by POS Sequence over TwitterUsing Hybrid Approach Analyzing Sentence Pattern by POS Sequence over Twitter
Using Hybrid Approach Analyzing Sentence Pattern by POS Sequence over Twitter
 

More from ijfcstjournal

ENHANCING ENGLISH WRITING SKILLS THROUGH INTERNET-PLUS TOOLS IN THE PERSPECTI...
ENHANCING ENGLISH WRITING SKILLS THROUGH INTERNET-PLUS TOOLS IN THE PERSPECTI...ENHANCING ENGLISH WRITING SKILLS THROUGH INTERNET-PLUS TOOLS IN THE PERSPECTI...
ENHANCING ENGLISH WRITING SKILLS THROUGH INTERNET-PLUS TOOLS IN THE PERSPECTI...
ijfcstjournal
 
A SURVEY TO REAL-TIME MESSAGE-ROUTING NETWORK SYSTEM WITH KLA MODELLING
A SURVEY TO REAL-TIME MESSAGE-ROUTING NETWORK SYSTEM WITH KLA MODELLINGA SURVEY TO REAL-TIME MESSAGE-ROUTING NETWORK SYSTEM WITH KLA MODELLING
A SURVEY TO REAL-TIME MESSAGE-ROUTING NETWORK SYSTEM WITH KLA MODELLING
ijfcstjournal
 
A COMPARATIVE ANALYSIS ON SOFTWARE ARCHITECTURE STYLES
A COMPARATIVE ANALYSIS ON SOFTWARE ARCHITECTURE STYLESA COMPARATIVE ANALYSIS ON SOFTWARE ARCHITECTURE STYLES
A COMPARATIVE ANALYSIS ON SOFTWARE ARCHITECTURE STYLES
ijfcstjournal
 
SYSTEM ANALYSIS AND DESIGN FOR A BUSINESS DEVELOPMENT MANAGEMENT SYSTEM BASED...
SYSTEM ANALYSIS AND DESIGN FOR A BUSINESS DEVELOPMENT MANAGEMENT SYSTEM BASED...SYSTEM ANALYSIS AND DESIGN FOR A BUSINESS DEVELOPMENT MANAGEMENT SYSTEM BASED...
SYSTEM ANALYSIS AND DESIGN FOR A BUSINESS DEVELOPMENT MANAGEMENT SYSTEM BASED...
ijfcstjournal
 
AN ALGORITHM FOR SOLVING LINEAR OPTIMIZATION PROBLEMS SUBJECTED TO THE INTERS...
AN ALGORITHM FOR SOLVING LINEAR OPTIMIZATION PROBLEMS SUBJECTED TO THE INTERS...AN ALGORITHM FOR SOLVING LINEAR OPTIMIZATION PROBLEMS SUBJECTED TO THE INTERS...
AN ALGORITHM FOR SOLVING LINEAR OPTIMIZATION PROBLEMS SUBJECTED TO THE INTERS...
ijfcstjournal
 
LBRP: A RESILIENT ENERGY HARVESTING NOISE AWARE ROUTING PROTOCOL FOR UNDER WA...
LBRP: A RESILIENT ENERGY HARVESTING NOISE AWARE ROUTING PROTOCOL FOR UNDER WA...LBRP: A RESILIENT ENERGY HARVESTING NOISE AWARE ROUTING PROTOCOL FOR UNDER WA...
LBRP: A RESILIENT ENERGY HARVESTING NOISE AWARE ROUTING PROTOCOL FOR UNDER WA...
ijfcstjournal
 
STRUCTURAL DYNAMICS AND EVOLUTION OF CAPSULE ENDOSCOPY (PILL CAMERA) TECHNOLO...
STRUCTURAL DYNAMICS AND EVOLUTION OF CAPSULE ENDOSCOPY (PILL CAMERA) TECHNOLO...STRUCTURAL DYNAMICS AND EVOLUTION OF CAPSULE ENDOSCOPY (PILL CAMERA) TECHNOLO...
STRUCTURAL DYNAMICS AND EVOLUTION OF CAPSULE ENDOSCOPY (PILL CAMERA) TECHNOLO...
ijfcstjournal
 
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDING
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDINGAN OPTIMIZED HYBRID APPROACH FOR PATH FINDING
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDING
ijfcstjournal
 
EAGRO CROP MARKETING FOR FARMING COMMUNITY
EAGRO CROP MARKETING FOR FARMING COMMUNITYEAGRO CROP MARKETING FOR FARMING COMMUNITY
EAGRO CROP MARKETING FOR FARMING COMMUNITY
ijfcstjournal
 
EDGE-TENACITY IN CYCLES AND COMPLETE GRAPHS
EDGE-TENACITY IN CYCLES AND COMPLETE GRAPHSEDGE-TENACITY IN CYCLES AND COMPLETE GRAPHS
EDGE-TENACITY IN CYCLES AND COMPLETE GRAPHS
ijfcstjournal
 
COMPARATIVE STUDY OF DIFFERENT ALGORITHMS TO SOLVE N QUEENS PROBLEM
COMPARATIVE STUDY OF DIFFERENT ALGORITHMS TO SOLVE N QUEENS PROBLEMCOMPARATIVE STUDY OF DIFFERENT ALGORITHMS TO SOLVE N QUEENS PROBLEM
COMPARATIVE STUDY OF DIFFERENT ALGORITHMS TO SOLVE N QUEENS PROBLEM
ijfcstjournal
 
PSTECEQL: A NOVEL EVENT QUERY LANGUAGE FOR VANET’S UNCERTAIN EVENT STREAMS
PSTECEQL: A NOVEL EVENT QUERY LANGUAGE FOR VANET’S UNCERTAIN EVENT STREAMSPSTECEQL: A NOVEL EVENT QUERY LANGUAGE FOR VANET’S UNCERTAIN EVENT STREAMS
PSTECEQL: A NOVEL EVENT QUERY LANGUAGE FOR VANET’S UNCERTAIN EVENT STREAMS
ijfcstjournal
 
CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...
CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...
CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...
ijfcstjournal
 
A MUTATION TESTING ANALYSIS AND REGRESSION TESTING
A MUTATION TESTING ANALYSIS AND REGRESSION TESTINGA MUTATION TESTING ANALYSIS AND REGRESSION TESTING
A MUTATION TESTING ANALYSIS AND REGRESSION TESTING
ijfcstjournal
 
GREEN WSN- OPTIMIZATION OF ENERGY USE THROUGH REDUCTION IN COMMUNICATION WORK...
GREEN WSN- OPTIMIZATION OF ENERGY USE THROUGH REDUCTION IN COMMUNICATION WORK...GREEN WSN- OPTIMIZATION OF ENERGY USE THROUGH REDUCTION IN COMMUNICATION WORK...
GREEN WSN- OPTIMIZATION OF ENERGY USE THROUGH REDUCTION IN COMMUNICATION WORK...
ijfcstjournal
 
A NEW MODEL FOR SOFTWARE COSTESTIMATION USING HARMONY SEARCH
A NEW MODEL FOR SOFTWARE COSTESTIMATION USING HARMONY SEARCHA NEW MODEL FOR SOFTWARE COSTESTIMATION USING HARMONY SEARCH
A NEW MODEL FOR SOFTWARE COSTESTIMATION USING HARMONY SEARCH
ijfcstjournal
 
AGENT ENABLED MINING OF DISTRIBUTED PROTEIN DATA BANKS
AGENT ENABLED MINING OF DISTRIBUTED PROTEIN DATA BANKSAGENT ENABLED MINING OF DISTRIBUTED PROTEIN DATA BANKS
AGENT ENABLED MINING OF DISTRIBUTED PROTEIN DATA BANKS
ijfcstjournal
 
International Journal on Foundations of Computer Science & Technology (IJFCST)
International Journal on Foundations of Computer Science & Technology (IJFCST)International Journal on Foundations of Computer Science & Technology (IJFCST)
International Journal on Foundations of Computer Science & Technology (IJFCST)
ijfcstjournal
 
AN INTRODUCTION TO DIGITAL CRIMES
AN INTRODUCTION TO DIGITAL CRIMESAN INTRODUCTION TO DIGITAL CRIMES
AN INTRODUCTION TO DIGITAL CRIMES
ijfcstjournal
 
DISTRIBUTION OF MAXIMAL CLIQUE SIZE UNDER THE WATTS-STROGATZ MODEL OF EVOLUTI...
DISTRIBUTION OF MAXIMAL CLIQUE SIZE UNDER THE WATTS-STROGATZ MODEL OF EVOLUTI...DISTRIBUTION OF MAXIMAL CLIQUE SIZE UNDER THE WATTS-STROGATZ MODEL OF EVOLUTI...
DISTRIBUTION OF MAXIMAL CLIQUE SIZE UNDER THE WATTS-STROGATZ MODEL OF EVOLUTI...
ijfcstjournal
 

More from ijfcstjournal (20)

ENHANCING ENGLISH WRITING SKILLS THROUGH INTERNET-PLUS TOOLS IN THE PERSPECTI...
ENHANCING ENGLISH WRITING SKILLS THROUGH INTERNET-PLUS TOOLS IN THE PERSPECTI...ENHANCING ENGLISH WRITING SKILLS THROUGH INTERNET-PLUS TOOLS IN THE PERSPECTI...
ENHANCING ENGLISH WRITING SKILLS THROUGH INTERNET-PLUS TOOLS IN THE PERSPECTI...
 
A SURVEY TO REAL-TIME MESSAGE-ROUTING NETWORK SYSTEM WITH KLA MODELLING
A SURVEY TO REAL-TIME MESSAGE-ROUTING NETWORK SYSTEM WITH KLA MODELLINGA SURVEY TO REAL-TIME MESSAGE-ROUTING NETWORK SYSTEM WITH KLA MODELLING
A SURVEY TO REAL-TIME MESSAGE-ROUTING NETWORK SYSTEM WITH KLA MODELLING
 
A COMPARATIVE ANALYSIS ON SOFTWARE ARCHITECTURE STYLES
A COMPARATIVE ANALYSIS ON SOFTWARE ARCHITECTURE STYLESA COMPARATIVE ANALYSIS ON SOFTWARE ARCHITECTURE STYLES
A COMPARATIVE ANALYSIS ON SOFTWARE ARCHITECTURE STYLES
 
SYSTEM ANALYSIS AND DESIGN FOR A BUSINESS DEVELOPMENT MANAGEMENT SYSTEM BASED...
SYSTEM ANALYSIS AND DESIGN FOR A BUSINESS DEVELOPMENT MANAGEMENT SYSTEM BASED...SYSTEM ANALYSIS AND DESIGN FOR A BUSINESS DEVELOPMENT MANAGEMENT SYSTEM BASED...
SYSTEM ANALYSIS AND DESIGN FOR A BUSINESS DEVELOPMENT MANAGEMENT SYSTEM BASED...
 
AN ALGORITHM FOR SOLVING LINEAR OPTIMIZATION PROBLEMS SUBJECTED TO THE INTERS...
AN ALGORITHM FOR SOLVING LINEAR OPTIMIZATION PROBLEMS SUBJECTED TO THE INTERS...AN ALGORITHM FOR SOLVING LINEAR OPTIMIZATION PROBLEMS SUBJECTED TO THE INTERS...
AN ALGORITHM FOR SOLVING LINEAR OPTIMIZATION PROBLEMS SUBJECTED TO THE INTERS...
 
LBRP: A RESILIENT ENERGY HARVESTING NOISE AWARE ROUTING PROTOCOL FOR UNDER WA...
LBRP: A RESILIENT ENERGY HARVESTING NOISE AWARE ROUTING PROTOCOL FOR UNDER WA...LBRP: A RESILIENT ENERGY HARVESTING NOISE AWARE ROUTING PROTOCOL FOR UNDER WA...
LBRP: A RESILIENT ENERGY HARVESTING NOISE AWARE ROUTING PROTOCOL FOR UNDER WA...
 
STRUCTURAL DYNAMICS AND EVOLUTION OF CAPSULE ENDOSCOPY (PILL CAMERA) TECHNOLO...
STRUCTURAL DYNAMICS AND EVOLUTION OF CAPSULE ENDOSCOPY (PILL CAMERA) TECHNOLO...STRUCTURAL DYNAMICS AND EVOLUTION OF CAPSULE ENDOSCOPY (PILL CAMERA) TECHNOLO...
STRUCTURAL DYNAMICS AND EVOLUTION OF CAPSULE ENDOSCOPY (PILL CAMERA) TECHNOLO...
 
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDING
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDINGAN OPTIMIZED HYBRID APPROACH FOR PATH FINDING
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDING
 
EAGRO CROP MARKETING FOR FARMING COMMUNITY
EAGRO CROP MARKETING FOR FARMING COMMUNITYEAGRO CROP MARKETING FOR FARMING COMMUNITY
EAGRO CROP MARKETING FOR FARMING COMMUNITY
 
EDGE-TENACITY IN CYCLES AND COMPLETE GRAPHS
EDGE-TENACITY IN CYCLES AND COMPLETE GRAPHSEDGE-TENACITY IN CYCLES AND COMPLETE GRAPHS
EDGE-TENACITY IN CYCLES AND COMPLETE GRAPHS
 
COMPARATIVE STUDY OF DIFFERENT ALGORITHMS TO SOLVE N QUEENS PROBLEM
COMPARATIVE STUDY OF DIFFERENT ALGORITHMS TO SOLVE N QUEENS PROBLEMCOMPARATIVE STUDY OF DIFFERENT ALGORITHMS TO SOLVE N QUEENS PROBLEM
COMPARATIVE STUDY OF DIFFERENT ALGORITHMS TO SOLVE N QUEENS PROBLEM
 
PSTECEQL: A NOVEL EVENT QUERY LANGUAGE FOR VANET’S UNCERTAIN EVENT STREAMS
PSTECEQL: A NOVEL EVENT QUERY LANGUAGE FOR VANET’S UNCERTAIN EVENT STREAMSPSTECEQL: A NOVEL EVENT QUERY LANGUAGE FOR VANET’S UNCERTAIN EVENT STREAMS
PSTECEQL: A NOVEL EVENT QUERY LANGUAGE FOR VANET’S UNCERTAIN EVENT STREAMS
 
CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...
CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...
CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...
 
A MUTATION TESTING ANALYSIS AND REGRESSION TESTING
A MUTATION TESTING ANALYSIS AND REGRESSION TESTINGA MUTATION TESTING ANALYSIS AND REGRESSION TESTING
A MUTATION TESTING ANALYSIS AND REGRESSION TESTING
 
GREEN WSN- OPTIMIZATION OF ENERGY USE THROUGH REDUCTION IN COMMUNICATION WORK...
GREEN WSN- OPTIMIZATION OF ENERGY USE THROUGH REDUCTION IN COMMUNICATION WORK...GREEN WSN- OPTIMIZATION OF ENERGY USE THROUGH REDUCTION IN COMMUNICATION WORK...
GREEN WSN- OPTIMIZATION OF ENERGY USE THROUGH REDUCTION IN COMMUNICATION WORK...
 
A NEW MODEL FOR SOFTWARE COSTESTIMATION USING HARMONY SEARCH
A NEW MODEL FOR SOFTWARE COSTESTIMATION USING HARMONY SEARCHA NEW MODEL FOR SOFTWARE COSTESTIMATION USING HARMONY SEARCH
A NEW MODEL FOR SOFTWARE COSTESTIMATION USING HARMONY SEARCH
 
AGENT ENABLED MINING OF DISTRIBUTED PROTEIN DATA BANKS
AGENT ENABLED MINING OF DISTRIBUTED PROTEIN DATA BANKSAGENT ENABLED MINING OF DISTRIBUTED PROTEIN DATA BANKS
AGENT ENABLED MINING OF DISTRIBUTED PROTEIN DATA BANKS
 
International Journal on Foundations of Computer Science & Technology (IJFCST)
International Journal on Foundations of Computer Science & Technology (IJFCST)International Journal on Foundations of Computer Science & Technology (IJFCST)
International Journal on Foundations of Computer Science & Technology (IJFCST)
 
AN INTRODUCTION TO DIGITAL CRIMES
AN INTRODUCTION TO DIGITAL CRIMESAN INTRODUCTION TO DIGITAL CRIMES
AN INTRODUCTION TO DIGITAL CRIMES
 
DISTRIBUTION OF MAXIMAL CLIQUE SIZE UNDER THE WATTS-STROGATZ MODEL OF EVOLUTI...
DISTRIBUTION OF MAXIMAL CLIQUE SIZE UNDER THE WATTS-STROGATZ MODEL OF EVOLUTI...DISTRIBUTION OF MAXIMAL CLIQUE SIZE UNDER THE WATTS-STROGATZ MODEL OF EVOLUTI...
DISTRIBUTION OF MAXIMAL CLIQUE SIZE UNDER THE WATTS-STROGATZ MODEL OF EVOLUTI...
 

Recently uploaded

The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
UiPathCommunity
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Inflectra
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Product School
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
Alison B. Lowndes
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Jeffrey Haguewood
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 

Recently uploaded (20)

The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 

OPTIMIZATION OF CROSS DOMAIN SENTIMENT ANALYSIS USING SENTIWORDNET

  • 1. International Journal in Foundations of Computer Science & Technology (IJFCST), Vol. 3, No.5, September 2013 DOI:10.5121/ijfcst.2013.3504 35 OPTIMIZATION OF CROSS DOMAIN SENTIMENT ANALYSIS USING SENTIWORDNET K Paramesha1 and K C Ravishankar2 1 Department of Computer Science & Engg, Vidyavardhaka College of Engg., Mysore, India 2 Department of Computer Science & Engg, Government Engineering College, Hassan, India ABSTRACT The task of sentiment analysis of reviews is carried out using manually built / automatically generated lexicon resources of their own with which terms are matched with lexicon to compute the term count for positive and negative polarity. On the other hand the Sentiwordnet, which is quite different from other lexicon resources that gives scores (weights) of the positive and negative polarity for each word. The polarity of a word namely positive, negative and neutral have the score ranging between 0 to 1 indicates the strength/weight of the word with that sentiment orientation. In this paper, we show that using the Sentiwordnet, how we could enhance the performance of the classification at both sentence and document level. KEYWORDS Optimization, Sentiment analysis, Cross Domain, Genetic algorithm, Fine-grained, Sentiwordnet. 1. INTRODUCTION The rapid strides made in the area of web technologies facilitated the customers to share their experiences of using the products (consumer products, books, movies…) across the globe. Such products could be purchased from vendors by the customers via online. These customers being the brand ambassadors of the products share their opinions (customer reviews) about product on suitable platform which will serve as feedback on products. The reviews are helpful to other prospective buyers who are planning to buy the products and the product manufacturing companies to make strategic decisions on products based upon the reviews. The present form of web provides multiple platforms such are blog spots, review forums etc. There are also different styles of rendering the feedback. 1) Rating: The overall product utility feedback is rate for a range (1-5) stars with 1 star being negative remark and 5 stars for positive remark. The rating sometimes made 2) Thumbs up/down: The positive feedback is indicated as thumbs up (+1) and negative for thumbs down (-1) 3) Text Review: The detailed elaborate user experience is scripted using natural language which is quite ambiguous in nature.
  • 2. International Journal in Foundations of Computer Science & Technology (IJFCST), Vol. 3, No.5, September 2013 36 2. CROSS DOMAIN REVIEWS The cross domain reviews refer to the collection of reviews on items, captured from different domains such as BOOK, DVDS, VIDEOGAMES ... Empirically it is observed that different words express sentiment in different domains. As mentioned in [2], same words may have different polarity in different domains. Difference in vocabularies across different domains also adds to the difficulty when applying classifiers trained on labeled data in one domain to test data in another. On employing a sentiment classifier, trained for a particular domain to classify sentiment of user reviews of a different domain often results in poor performance because words that occur in the train (source) domain might not appear in the test (target) domain [4]. In the electronics domain, we may use words like “compact”, “sharp” to express our positive sentiment and use “blurry” to express our negative sentiment. While in the video game domain, words like “hooked”, “realistic” indicate positive opinion and the word “boring” indicates negative opinion. In effect, with such of the words, the performance of the sentiment is greatly affected by the sentiment score. 3. DATA SET The fine-grained sentiment dataset contains 294 product reviews from various online sources manually annotated with sentence level sentiment by Oscar and Ryan McDonald. The data is approximately balanced with respect to domain (books, DVDs, electronics, music, and videogames) and overall review sentiment (positive, negative, and neutral). In this work we considered only positive and negative reviews dataset. The dataset is available at [6]. The details of the review data set at document level and sentence level are furnished below in tabel1 and tabel2 respectively. Table 1. Distribution of review documents Polarity Domain Total Books Dvds Electronics Music Video Games Positive Review 19 19 19 20 20 97 Negative Review 29 20 19 20 20 99
  • 3. International Journal in Foundations of Computer Science & Technology (IJFCST), Vol. 3, No.5, September 2013 37 Table 2. Distribution of review sentences Polarity Domain Total Books Dvds Electronics Music Video Games Positive Review 160 164 161 183 255 923 Negative Review 195 264 240 176 442 1320 4. SENTIWORDNET Sentiwordnet is a lexical resource for opinion mining. Sentiwordnet assigns to each synset of WordNet three sentiment scores: positivity, negativity, objectivity [1]. In this work we use SENTIWORDNET 3.0[3] which is an improved version of SENTIWORDNET 1.0, a lexical resource explicitly devised for supporting sentiment classification and opinion mining applications. 5. PREVIOUS WORK Using the sentiwordnet, [8] the common approach is based on term counting of both orientations. Sentiwordnet scores were calculated as positive and negative terms were found on each document and used to determine sentiment orientation by assigning the document to the class with the highest score. Further, using supervised learning methods, different aspects of text as sources of features have been proposed in the literature. A total of 96 distinct features were generated based on the scores of positive and negative terms, for each parts-of-speech. The result of classification using feature set is slightly more than the term count result. The best result is just below 70%. Applying the technique used by Brendan Tierney in [8], positive and negative scores for each review were calculated by counting positive and negative words, and then the sentiment polarity was determined by assigning the review to the class with the highest score. This method yielded an overall accuracy of 56.77%, with results detailed in the table Sums on Review Positive and negative scores for each review were calculated using ‘Sum on Review’ technique as mentioned in [9] with various thresholds. This method yielded the results with the best accuracy of 67% at threshold 0. Positive and negative scores for each review were calculated using Average on Sentence and Average on Review technique as mentioned in section 4 with various thresholds. This method yielded an overall accuracy of68.63%at threshold0.The results are detailed in table3 6. OPTIMIZATION USING EVOLUTIONARY METHODS For the optimization of classification, we consider an application of genetic algorithm (GA) which computes the weights of features. In prediction tasks, usually the datasets containing a large number of records and features that will be processed using, for example, created
  • 4. International Journal in Foundations of Computer Science & Technology (IJFCST), Vol. 3, No.5, September 2013 38 classification rules. Without pre-processing the dataset, i.e. without pre-weighting the attributes results in classification error. To counter the problem, GA is applied to find for each feature the weight that would reduce classification error value [7]. We perform the weighting of features with an evolutionary strategies approach using the variance of the Gaussian additive mutation adapted by a 1/5-rule. This rule [5] states that the ratio of successful mutations to all mutations should be 1/5, hence if the ration is greater than 1/5, the step size should be increased otherwise decreased. x’i=xi + N (0, σ (t)) (1) Where N (0, σ (t)) is a random Gaussian number with mean zero and mutation step σ(t) is the function of tth generation. The simplest method is to specify the mutation mechanism is to use the same σ (t) for all vectors in the population, for all variables for each vector. This will decrease slowly form weight 1 of parameters at the beginning of the run (t=0) to 0.1 as t approaches to the T generations. Using this mechanism, changes in the parameter values are based on the feedback from the fitness test and σ(t) adaptation happens at very n generations. Such decreases may assist the fine tuning capabilities of the algorithm. 7. EXPERIMENTAL SETUP The feature vector is generated using the Sentiwordnet 3.0 lexical resources as done in the [8].The details of feature extract is tabled below. The sentences of review documents are POS tagged using Stanford Tagger utility to identify the POS of words. These tagged words are then produced to the sentiwordnet 3.0 to generate positive and negative scores for the feature vector. The five different types of classifiers are applied for the sentiment analysis at document level and sentence level, with and without optimization of weights. Table 3. Distribution of Feature Vector derived from SentiWordNet Category Features Count Sentence Level Sum of positive and negative scores and term count for Adjectives. Sum of positive and negative scores and term count for Adverbs. Sum of positive and negative scores and term count for Verbs. Sum of positive and negative scores and term count for Nouns. 16 Ratio of overall score per total terms found, for each part of speech. 8 Sum of positive and negative scores and term count. 4 Ratio of overall score per total terms found, for positive and negative words. 2 Ratio of positive and negative scores. Ratio of positive and negative terms. 2 Document Level Summation of all features over sentences 32
  • 5. International Journal in Foundations of Computer Science & Technology (IJFCST), Vol. 3, No.5, September 2013 39 Figure 1. Steps Involved in Sentiment Analysis both at Sentence Level and Document Level 8. EXPERIMENT RESULT Table 4. Experiment Results for Document Level Analysis (10-fold Cross Validation) Document Level classifier Without Optimization With Optimization Accuracy Precision Accuracy Precision Svm 65 73 72 81 Naïve Bayes 58 67 60 72 Decision Tree 43 38 52 67 Linear Regression 66 68 72 73 Logistic Regression 66 78 71 78
  • 6. International Journal in Foundations of Computer Science & Technology (IJFCST), Vol. 3, No.5, September 2013 40 Table 5. Experiment Results for Sentence Level Analysis (10-fold Cross Validation) Sentence Level classifier Without Optimization With Optimization Accuracy Precision Accuracy Precision SVM 63 64 64 64 Naïve Bayes 63 56 54 58 Decision Tree 59 58 59 58 Linear Regression 65 62 66 63 Logistic Regression 65 67 65 68 9. DISCUSSION On comparing the results obtained of this research and previous work results using sentiwordnet, validates that sentiwordnet could yield accuracy of 65%-75% with 10-fold cross validation, but from our observation, with single testing of whole weighted dataset and validation (without split validation) yields outstanding results which imply maximum convergence of machine learning algorithm. On other hand if the same optimized weighted data set is subjected to the 10-fold cross validation, the results were considerable lower due to overfitting and noise in the data set. 10. CONCLUSION The experiment results shown implicate two important inferences, which are, validating the efficiency of the sentiwordnet in discriminating the polarity of words both at sentence level and document level and second is the optimization techniques could lead to slightly better results for certain type of classifications. With the distinguishing ability of sentiwordnet for cross domain words, in future work we would like to use features extracted from the sentiwordnet as a compliment to other feature set derived from other techniques. REFERENCES [1] Bo Pang1 and Lillian Lee2Foundations and Trends in Information Retrieval Vol. 2, Nos. 1–2 (2008) 1–13 [2] S. Zhou, S. Zhang, and G. Karypis (Eds.): ADMA 2012, LNAI 7713, pp. 577–588, 2012.c_Springer- Verlag Berlin Heidelberg (2012) [3] Baccianella, Stefano, Andrea Esuli, and Fabrizio Sebastiani. (2010).SentiWordNet 3.0: An enhanced Lexical resource for sentiment analysis and opinion mining. In Proceedings of the Seventh Conference on International Language Resources and Evaluation (LREC’10), pages 2200–2204, Valletta. [4] Cross-Domain Sentiment Classification viaSpectral Feature Alignment Sinno Jialin Pany, Xiaochuan Niz, Jian-Tao Sunz, Qiang Yangy and Zheng Chenzy Department of Computer Science and Engineering Hong Kong University of Science and Technology, Hong Kong Microsoft Research Asia, Beijing, P. R. China [5] Eiben, Agoston Endre, Robert Hinterding, and Zbigniew Michalewicz. "Parameter control in evolutionary algorithms." Evolutionary Computation, IEEE Transactions on 3.2 (1999): 124-141. [6] http://www.sics.se/people/oscar/datasets
  • 7. International Journal in Foundations of Computer Science & Technology (IJFCST), Vol. 3, No.5, September 2013 41 [7] Scientific Journal of Riga Technical University. Computer Sciences. Volume 40, Issue -1, Pages 123– 128, ISSN (Print) 1407-7493, DOI:10.2478/v10143-010-0017-7, March (2010) [8] Ohana, B., Tierney, B. Sentiment classification of reviews using SentiWordNet. 9th. IT&T Conference, Dublin Institute of Technology, Dublin, Ireland, 22nd.-23rd. October, (2009). [9] A. Hamouda and M. Rohaim. Reviews Classification Using SentiWordNet Lexicon. World Congress on Computer Science and Information Technology, January, (2011). Authors K.PARAMESHA Assoc. Professor Dept. of CSE, VVCE, Mysore, India Studied BE in Computer Science (Bangalore university), M.Tech in Network Engineering (VTU, Belgaum). Have been working as a faculty in Dept. Of Computer Science at VVCE since 2000 and actively perusing PhD course in the area of Sentiment analysis. Dr K.C.RAVISHANKAR Professor & HOD Dept. of CSE, Govt. Engineering College Hassan, India He has obtained BE in Computer Science and Engineering from Mysore University, M.Tech in Computer Science and Engineering from IIT, Delhi and doctorate from VTU, Belgaum in Computer Science and Engineering. He has 23 years of teaching experience. He served as Professor at Malnad College of Engineering Hassan. Presently working as Professor & HOD at Govt. Engineering College Hassan, Karnataka. His area of interest include Image Processing, Information security, Computer Network and Databases. He has presented a number of research papers at National and International conferences. Delivered invited talks and key note addresses at reputed institutions. He has served as chairperson and reviewer for conferences and currently guiding three PhD scholars.