Goto

Collaborating Authors

 Discourse & Dialogue


AI, Machine Learning and Sentiment Analysis Applied to Finance, 14-15 March 2017, Hong Kong

#artificialintelligence

Find out how AI, Machine Learning and Sentiment Analysis are being applied to Finance in a new conference organized by UNICOM Seminars Ltd in Hong Kong on 14-15 March 2017. Technology innovations meet greatest success in business when these are entirely'client focussed'. Developments in the retail sector, which is consumer-led, are addressing client demand for more personalised, faster and competitive services. Artificial Intelligence, Machine Learning and Sentiment Analysis are changing the way in which these services are offered. In particular, Financial Organisations are creating and leveraging such innovation in the domain of wealth management.


Challenges in Building Highly-Interactive Dialog Systems

AI Magazine

Spoken dialog researchers have recently demonstrated highly-interactive systems in several domains. This paper considers how to build on these advances to make systems more robust, easier to develop, and more scientifically significant. We identify key challenges whose solution would lead to improvements in dialog systems and beyond.


Challenges in Building Highly-Interactive Dialog Systems

AI Magazine

Research systems are providing a vision of what is possible. However much work remains before such abilities are robust, widely useful, and generally available. This article identifies 10 key challenges, relating to modeling, systems architecture, and development methods. Of pressing importance for dialogue systems, these challenges are also relevant for intelligent and interactive systems more generally. Given Siri's broad deployment and popular example in science fiction movies. However, tellingly, salience, one might imagine that it solved the problems such systems are portrayed as idiot savants: knowledgeable, of interacting in dialogue: we often meet people logical, and well-spoken, but unable to who are unaware how cleverly Siri and her sisters interact smoothly with humans. We find it provocative avoid dialogue.


How To: Scaling a Machine Learning Model Using Pivotal Cloud Foundry

#artificialintelligence

Scaling a model in response to user demand is crucial for bringing a machine learning model into production. In this blog post, we follow up on our previous post by showing how to scale this model in production using Pivotal Cloud Foundry (PCF). Pivotal Cloud Foundry makes it easy to scale an application using the command line interface (CLI) or the Apps Manager with no downtime. We utilize Apps Manager to horizontally scale out (spinning up new instances of our model) our application automatically utilizing PCF's load balancer, which reroutes new requests to appropriate instances of our model. Using the sentiment analysis analysis model we've built with Pivotal Greenplum and Python, we built a dashboard for analyzing live Tweets from the Twitter firehose.


Sentiment Analysis of Movie Reviews (2): word2vec

@machinelearnbot

This is the continuation of my mini-series on sentiment analysis of movie reviews, which originally appeared on recurrentnull.wordpress.com. Last time, we had a look at how well classical bag-of-words models worked for classification of the Stanford collection of IMDB reviews. As it turned out, the "winner" was Logistic Regression, using both unigrams and bigrams for classification. The best classification accuracy obtained was .89 So, bag-of-words models may be surprisingly successful, but they are limited in what they can do.


Sentiment Analysis of Movie Reviews (1):Bag-of-Words Models

@machinelearnbot

Looking at this text, we already see complexity emerging. As a human reader, I'm sure you'll say this is a negative review, and undoubtedly there are some clearly negative words ("dreadful", "confusing", "terrible"). But to a high degree, negativity comes from negated positive words: "lacking achievement", "wasn't very funny", "not as good as she could have given". So clearly we cannot just look at single words in isolation, but at sequences of words – n-grams (bigrams, trigrams, …) as they say in natural language processing. The question is though, at how many consecutive words should we look?


Worried about AI taking your job? It's already happening in Japan

#artificialintelligence

Watson AI is expected to improve productivity by 30%, Fukoku Mutual says. The company was encouraged by its use of similar IBM technology to analyze customer's voices during complaints. The software typically takes the customer's words, converts them to text, and analyzes whether those words are positive or negative. Similar sentiment analysis software is also being used by a range of US companies for customer service; incidentally, a large benefit of the software is understanding when customers get frustrated with automated systems.


Twelve types of Artificial Intelligence (AI) problems – Data Science Central

#artificialintelligence

The interplay between AI and Sentiment analysis is also a new area. There are already many synergies between AI and Sentiment analysis because many functions of AI apps need sentiment analysis features. "The common interest areas where Artificial Intelligence (AI) meets sentiment analysis can be viewed from four aspects of the problem and the aspects can be grouped as Object identification, Feature extraction, Orientation classification and Integration. The existing reported solutions or available systems are still far from being perfect or fail to meet the satisfaction level of the end users. The main issue may be that there are many conceptual rules that govern sentiment and there are even more clues (possibly unlimited) that can convey these concepts from realization to verbalization of a human being."


Creating a sentiment analysis model with Scrapy and MonkeyLearn MonkeyLearn Blog

#artificialintelligence

We are currently in an era of data explosion, where millions of tweets, articles, comments, reviews and the like are being published everyday. Developers are taking advantage of the abundance of data and using things like web scraping to do all kinds of cool things. Sometimes web scraping is not enough; digging deeper and analyzing the data is often needed to unlock the true meaning behind the data and discover valuable insights. On this tutorial we will cover how you can use MonkeyLearn and Scrapy to build a machine learning model that will help you analyze vast amounts of web scraped data in a cost-effective way. We will use Scrapy to extract hotel reviews from TripAdvisor and use those reviews as training samples to create a machine learning model with MonkeyLearn.


Sentiment Analysis of Movie Reviews (3): doc2vec

@machinelearnbot

This is the last – for now – installment of my mini-series on sentiment analysis of the Stanford collection of IMDB reviews (originally published on recurrentnull.wordpress.com). So far, we've had a look at classical bag-of-words models and word vectors (word2vec). We saw that from the classifiers used, logistic regression performed best, be it in combination with bag-of-words or word2vec. We also saw that while the word2vec model did in fact model semantic dimensions, it was less successful for classification than bag-of-words, and we explained that by the averaging of word vectors we had to perform to obtain input features on review (not word) level. So the question now is: How would distributed representations perform if we did not have to throw away information by averaging word vectors?