Do Intelligent Robots Need Emotion?

What's your opinion?

Semantic Orientation-Based Approach for Sentiment Analysis

.

A:
Two types of techniques have been used in the literature for semantic orientation-based approach for sentiment analysis, viz., (i) corpus based and (ii) dictionary or lexicon or knowledge based. 

In this chapter, we explore the corpus-based semantic orientation approach for sentiment analysis. 

Corpus-based semantic orientation approach requires large dataset to detect the polarity of the terms and therefore the sentiment of the text. 

The main problem with this approach is that it relies on the polarity of the terms that have appeared in the training corpus since polarity is computed for the terms that are in the corpus. 

This approach has been explored well in the literature due to the simplicity of this approach [29, 120]. 

This approach initially mines sentiment-bearing terms from the unstructured text and further computes the polarity of the terms. 

Most of the sentiment-bearing terms are multi-word features unlike bag-of-words, e.g., “good movie,” “nice cinematography,” “nice actors,” etc. 

Performance of semantic orientation-based approach has been limited in the literature due to inadequate coverage of the multi-word features.

.

C:

Agarwal, B., & Mittal, N. (2016). Semantic Orientation-Based Approach for Sentiment Analysis.

.

K:

Sentiment Analysis, Multi-word Features, Semantic Orientation, Seed Word List, Mutual Information Method 

.

P:
https://link.springer.com/chapter/10.1007/978-3-319-25343-5_6

.

S:

https://www.semanticscholar.org/paper/Semantic-Orientation-Based-Approach-for-Sentiment-Agarwal-Mittal/d8d0d92dd282911c7e00361926f2d352a2e03b01

.

R:

https://www.researchgate.net/publication/301265951_Semantic_Orientation-Based_Approach_for_Sentiment_Analysis

.

G:

https://app.razzi.my/findgref?gid=1sICPEHZfxAmrC9Xse2vjyKQ7-vImSElF

Read More

JS Hint - A Static Code Analysis Tool for JavaScript

.

JSHint, A Static Code Analysis Tool for JavaScript

.

The project aims to help JavaScript developers write complex programs without worrying about typos and language gotchas.


Any code base eventually becomes huge at some point, so simple mistakes — that would not show themselves when written — can become show stoppers and add extra hours of debugging. So, static code analysis tools come into play and help developers spot such problems. JSHint scans a program written in JavaScript and reports about commonly made mistakes and potential bugs. The potential problem could be a syntax error, a bug due to an implicit type conversion, a leaking variable, or something else entirely.


Only 15% of all programs linted on jshint.com pass the JSHint checks. In all other cases, JSHint finds some red flags that could've been bugs or potential problems.


Please note, that while static code analysis tools can spot many different kind of mistakes, it can't detect if your program is correct, fast or has memory leaks. You should always combine tools like JSHint with unit and functional tests as well as with code reviews.

.

https://jshint.com/

Read More