Generating Reviews Discovering Sentiment

Code for "Learning to Generate Reviews and Discovering Sentiment"
Alternatives To Generating Reviews Discovering Sentiment
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Generating Reviews Discovering Sentiment1,361
4 years ago28mitPython
Code for "Learning to Generate Reviews and Discovering Sentiment"
Awesome Sentiment Analysis770
5 years agocc-by-sa-4.0
😀😄😂😭 A curated list of Sentiment Analysis methods, implementations and misc. 😥😟😱😤
Aspect Based Sentiment Analysis288
2 years agomit
A paper list for aspect based sentiment analysis.
Awesome Nlp Sentiment Analysis275
3 years agogpl-3.0
:book: 收集NLP领域相关的数据集、论文、开源实现,尤其是情感分析、情绪原因识别、评价对象和评价词抽取方面。
Absapapers268
a year ago2
Worth-reading papers and related awesome resources on aspect-based sentiment analysis (ABSA). 值得一读的方面级情感分析论文与相关资源集合
Chinese_conversation_sentiment190
7 years ago4
A Chinese sentiment dataset may be useful for sentiment analysis.
Socialsent171
2 years ago3March 07, 201711apache-2.0Python
Code and data for inducing domain-specific sentiment lexicons.
Sa Papers108
5 years ago
📄 Deep Learning 中 Sentiment Analysis 論文統整與分析 😀😡☹️😭🙄🤢
Contextual Utterance Level Multimodal Sentiment Analysis97
2 years ago1Python
Context-Dependent Sentiment Analysis in User-Generated Videos
Vista Net82
2 months ago4mitPython
Code for the paper "VistaNet: Visual Aspect Attention Network for Multimodal Sentiment Analysis", AAAI'19
Alternatives To Generating Reviews Discovering Sentiment
Select To Compare


Alternative Project Comparisons
Readme

Status: Archive (code is provided as-is, no updates expected)

Generating Reviews and Discovering Sentiment

Code for Learning to Generate Reviews and Discovering Sentiment (Alec Radford, Rafal Jozefowicz, Ilya Sutskever).

Right now the code supports using the language model as a feature extractor.

from encoder import Model

model = Model()
text = ['demo!']
text_features = model.transform(text)

A demo of using the features for sentiment classification as reported in the paper for the binary version of the Stanford Sentiment Treebank (SST) is included as sst_binary_demo.py. Additionally this demo visualizes the distribution of the sentiment unit like Figure 3 in the paper.

Sentiment Unit Visualization

Additionally there is a PyTorch port made by @guillitte which demonstrates how to train a model from scratch.

This repo also contains the parameters of the multiplicative LSTM model with 4,096 units we trained on the Amazon product review dataset introduced in McAuley et al. (2015) [1]. The dataset in de-duplicated form contains over 82 million product reviews from May 1996 to July 2014 amounting to over 38 billion training bytes. Training took one month across four NVIDIA Pascal GPUs, with our model processing 12,500 characters per second.

[1] McAuley, Julian, Pandey, Rahul, and Leskovec, Jure. Inferring networks of substitutable and complementary products. In Proceedings of the 21th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, pp. 785–794. ACM, 2015.

Popular Sentiment Projects
Popular Paper Projects
Popular Machine Learning Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Python
Paper
Sentiment