odashi / chainer_examples

Example usages of Chainer for natural language processing.
Other
118 stars 26 forks source link

Added some encoder implementations #1

Closed prajdabre closed 8 years ago

prajdabre commented 8 years ago

Since the recent NN MT systems use GRUs and Layered RNN's I added some implementations of the same with documentation.

I have added Layered LSTM (stateful and stateless) and Layered GRU implementations. Ask me if you have any questions.

odashi commented 8 years ago

Thank you for implementing new features! I aims that each top-level code in this repository should be a standalone tool, which means all features in these code can be used via command line options. This is important to assist other users, and avoid inactive code. The current submission looks there are no method to access your features, and I recommend that you also implement some command line options to switch network configuration if you can, like: --encoder="stateful"

prajdabre commented 8 years ago

Hi, Yea. I am going to do that soon. :+1:

odashi commented 8 years ago

Sorry for late reply, and thank you for your careful implementation!