GithubHelp home page GithubHelp logo

mengboy1 / lstm-rnn Goto Github PK

View Code? Open in Web Editor NEW

This project forked from lephong/lstm-rnn

0.0 0.0 0.0 20.41 MB

long short-term memory for recursive neural network model

License: Apache License 2.0

Makefile 4.29% C++ 95.71%

lstm-rnn's Introduction

lstm-rnn

A C++ implementation of the long short-term memory recursive neural network model (LSTM-RNN) described in

[1] Phong Le and Willem Zuidema (2015). Compositional Distributional Semantics with Long Short Term Memory. In Proceedings of Joint Conference on Lexical and Computational Semantics (*SEM).

Written and maintained by Phong Le (p.le [at] uva.nl)

Note: this is similar to Tree-LSTM, which was proposed at the same time.

Package

This package contains three components

Installation

  • Install OpenBlas at /opt/OpenBLAS.
  • Go to Release, execute make. It should work with gcc 4.9 or later. (If OpenBlas is not installed at /opt/OpenBLAS, you need to replace /opt/OpenBLAS by the correct path in makefile and src/subdir.mk.)

Usage

The following instruction is for replicating the second experiment reported in [1]. Some small changes are needed for your own cases.

Data

data/trees contains the train/dev/test files of the Stanford Sentiment Treebank (SST).

data/dic/glove-300d-840B contains the 300-D GloVe word embeddings (vectors of words not in the SST are removed).

If you want to use other word-embeddings, you should follow the following format:

  • create words.lst containing all frequent words (e.g. words appear at least 2 times), each word per line. The first line is always #UNKNOWN#
  • create wembs.txt containing word vectors. The first line is <number-of-vectors> <dimension>. For each following line: <word> <vector>. Vectors of words in words.lst but not in wembs.txt will be randomly initialised.

Train

In Release, open train.config, which stores the default parameter values. It should look like

dim 50

lambda 1e-3
lambdaL 1e-3
lambdaC 1e-3
dropoutRate 0
normGradThresh 1e10

learningRateDecay 0.
paramLearningRate 0.01
wembLearningRate 0.01
classLearningRate 0.01
evalDevStep 1

maxNEpoch 10
batchSize 5
nThreads 1

dataDir ../data/trees/
dicDir ../data/dic/glove-300d-840B/

compositionType LSTM
functionType tanh

You can try the traditional RNN by setting compositionType NORMAL, and try other activation functions by setting functionType <NAME> where <NAME> could be softsign, sigmoid, rlu.

Execute

./lstm-rnn --train train.config model.dat

where the resulting model will be stored in model.dat.

Evaluation

Execute

./lstm-rnn --test <test-file> <model-file>

lstm-rnn's People

Contributors

lephong avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.