All Projects → openai → Generating Reviews Discovering Sentiment

openai / Generating Reviews Discovering Sentiment

Licence: mit
Code for "Learning to Generate Reviews and Discovering Sentiment"

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Generating Reviews Discovering Sentiment

Bit Rnn
Quantize weights and activations in Recurrent Neural Networks.
Stars: ✭ 86 (-93.98%)
Mutual labels:  paper
Body reconstruction references
Paper, dataset and code collection on human body reconstruction
Stars: ✭ 96 (-93.28%)
Mutual labels:  paper
Research And Coding
研究资源列表 A curated list of research resources
Stars: ✭ 100 (-93%)
Mutual labels:  paper
Snapaper
📰 Past Papers Sharing Platform Based On Vue.js & GCE Guide | CAIE 试卷分享与下载平台
Stars: ✭ 90 (-93.7%)
Mutual labels:  paper
Deeplpf
Code for CVPR 2020 paper "Deep Local Parametric Filters for Image Enhancement"
Stars: ✭ 91 (-93.63%)
Mutual labels:  paper
Copymtl
AAAI20 "CopyMTL: Copy Mechanism for Joint Extraction of Entities and Relations with Multi-Task Learning"
Stars: ✭ 97 (-93.21%)
Mutual labels:  paper
Delora
Self-supervised Deep LiDAR Odometry for Robotic Applications
Stars: ✭ 81 (-94.33%)
Mutual labels:  paper
Gate
A high performant & paralleled Minecraft proxy server with scalability, flexibility & excellent server version support - ready for the cloud!
Stars: ✭ 102 (-92.86%)
Mutual labels:  paper
Train Procgen
Code for the paper "Leveraging Procedural Generation to Benchmark Reinforcement Learning"
Stars: ✭ 93 (-93.49%)
Mutual labels:  paper
Dataset
Crop/Weed Field Image Dataset
Stars: ✭ 98 (-93.14%)
Mutual labels:  paper
C2ae Multilabel Classification
Tensorflow implementation for the paper 'Learning Deep Latent Spaces for Multi-Label Classfications' in AAAI 2017
Stars: ✭ 90 (-93.7%)
Mutual labels:  paper
Awesome Computer Vision
Awesome Resources for Advanced Computer Vision Topics
Stars: ✭ 92 (-93.56%)
Mutual labels:  paper
Universal Resume
Minimal and formal résumé (CV) website template for print, mobile, and desktop. https://bit.ly/ur_demo
Stars: ✭ 1,349 (-5.6%)
Mutual labels:  paper
Autonomous Drone
This repository intends to enable autonomous drone delivery with the Intel Aero RTF drone and PX4 autopilot. The code can be executed both on the real drone or simulated on a PC using Gazebo. Its core is a robot operating system (ROS) node, which communicates with the PX4 autopilot through mavros. It uses SVO 2.0 for visual odometry, WhyCon for visual marker localization and Ewok for trajectoy planning with collision avoidance.
Stars: ✭ 87 (-93.91%)
Mutual labels:  paper
Library
Collection of papers in the field of distributed systems, game theory, cryptography, cryptoeconomics, zero knowledge
Stars: ✭ 100 (-93%)
Mutual labels:  paper
Neural Mmo
Code for the paper "Neural MMO: A Massively Multiagent Game Environment for Training and Evaluating Intelligent Agents"
Stars: ✭ 1,265 (-11.48%)
Mutual labels:  paper
Papers Literature Ml Dl Rl Ai
Highly cited and useful papers related to machine learning, deep learning, AI, game theory, reinforcement learning
Stars: ✭ 1,341 (-6.16%)
Mutual labels:  paper
Dimenet
DimeNet and DimeNet++ models, as proposed in "Directional Message Passing for Molecular Graphs" (ICLR 2020) and "Fast and Uncertainty-Aware Directional Message Passing for Non-Equilibrium Molecules" (NeurIPS-W 2020)
Stars: ✭ 106 (-92.58%)
Mutual labels:  paper
Evolution Strategies Starter
Code for the paper "Evolution Strategies as a Scalable Alternative to Reinforcement Learning"
Stars: ✭ 1,363 (-4.62%)
Mutual labels:  paper
Awesome Transfer Learning
Best transfer learning and domain adaptation resources (papers, tutorials, datasets, etc.)
Stars: ✭ 1,349 (-5.6%)
Mutual labels:  paper

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].