gitextract_eii7yk68/ ├── .gitignore ├── CMakeLists.txt ├── README.md ├── clusters-train-berk.txt ├── cmake/ │ └── FindEigen3.cmake ├── cnn/ │ ├── .gitignore │ ├── .gitmodules │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── INSTALL.md │ ├── LICENSE │ ├── MEM.notes │ ├── README.md │ ├── TODO.cnn │ ├── cmake/ │ │ ├── FindCNN.cmake │ │ └── FindEigen3.cmake │ ├── cnn/ │ │ ├── CMakeLists.txt │ │ ├── aligned-mem-pool.cc │ │ ├── aligned-mem-pool.h │ │ ├── c2w.h │ │ ├── cfsm-builder.cc │ │ ├── cfsm-builder.h │ │ ├── cnn-helper.h │ │ ├── cnn.cc │ │ ├── cnn.h │ │ ├── conv.cc │ │ ├── conv.h │ │ ├── cuda.cc │ │ ├── cuda.h │ │ ├── deep-lstm.cc │ │ ├── deep-lstm.h │ │ ├── devices.cc │ │ ├── devices.h │ │ ├── dict.cc │ │ ├── dict.h │ │ ├── dim.cc │ │ ├── dim.h │ │ ├── except.h │ │ ├── exec.cc │ │ ├── exec.h │ │ ├── expr.cc │ │ ├── expr.h │ │ ├── fast-lstm.cc │ │ ├── fast-lstm.h │ │ ├── functors.h │ │ ├── gpu-kernels.h │ │ ├── gpu-ops.cu │ │ ├── gpu-ops.h │ │ ├── grad-check.cc │ │ ├── grad-check.h │ │ ├── graph.cc │ │ ├── graph.h │ │ ├── gru.cc │ │ ├── gru.h │ │ ├── hsm-builder.cc │ │ ├── hsm-builder.h │ │ ├── init.cc │ │ ├── init.h │ │ ├── lstm.cc │ │ ├── lstm.h │ │ ├── mem.cc │ │ ├── mem.h │ │ ├── model.cc │ │ ├── model.h │ │ ├── mp.cc │ │ ├── mp.h │ │ ├── nodes-common.cc │ │ ├── nodes.cc │ │ ├── nodes.h │ │ ├── param-nodes.cc │ │ ├── param-nodes.h │ │ ├── random.h │ │ ├── rnn-state-machine.cc │ │ ├── rnn-state-machine.h │ │ ├── rnn.cc │ │ ├── rnn.h │ │ ├── saxe-init.cc │ │ ├── saxe-init.h │ │ ├── shadow-params.cc │ │ ├── shadow-params.h │ │ ├── simd-functors.h │ │ ├── tensor.cc │ │ ├── tensor.h │ │ ├── tests/ │ │ │ ├── test_edges.cc │ │ │ ├── test_init.cc │ │ │ └── test_utils.h │ │ ├── timing.h │ │ ├── training.cc │ │ └── training.h │ ├── config.h.cmake │ ├── examples/ │ │ ├── CMakeLists.txt │ │ ├── embed-cl.cc │ │ ├── encdec.cc │ │ ├── example-data/ │ │ │ ├── clusters-hsm.txt │ │ │ ├── dev-hsm.txt │ │ │ ├── dev-poi.txt │ │ │ ├── fin-dev.txt │ │ │ ├── fin-toy.txt │ │ │ ├── fin-words-dev.txt │ │ │ ├── fin-words.txt │ │ │ ├── fin.txt │ │ │ ├── seg-sup.dev.txt │ │ │ ├── textcat.txt │ │ │ ├── train-hsm.txt │ │ │ └── train-poi.txt │ │ ├── mlc.cc │ │ ├── nlm.cc │ │ ├── poisson-regression.cc │ │ ├── read-write.cc │ │ ├── rnnlm-aevb.cc │ │ ├── rnnlm-batch.cc │ │ ├── rnnlm-cfsm.cc │ │ ├── rnnlm-givenbag.cc │ │ ├── rnnlm-mp.cc │ │ ├── rnnlm.cc │ │ ├── rnnlm.h │ │ ├── rnnlm2.cc │ │ ├── segrnn-sup.cc │ │ ├── skiprnnlm.cc │ │ ├── tag-bilstm.cc │ │ ├── textcat.cc │ │ ├── tok-embed.cc │ │ ├── xor-batch-lookup.cc │ │ ├── xor-batch.cc │ │ ├── xor-xent.cc │ │ └── xor.cc │ ├── pycnn/ │ │ ├── INSTALL │ │ ├── makefile │ │ ├── pycnn.pxd │ │ ├── pycnn.pyx │ │ ├── pycnn_viz.py │ │ ├── setup.py │ │ └── setup_gpu.py │ ├── pyexamples/ │ │ ├── attention.py │ │ ├── bilstmtagger.py │ │ ├── cpu_vs_gpu.py │ │ ├── minibatch.py │ │ ├── rnnlm.py │ │ ├── rnnlm_transduce.py │ │ ├── tutorials/ │ │ │ ├── API.ipynb │ │ │ ├── RNNs.ipynb │ │ │ └── tutorial-1-xor.ipynb │ │ ├── util.py │ │ └── xor.py │ ├── rnnlm/ │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── install-examples.sh │ │ └── lm.cc │ └── tests/ │ ├── CMakeLists.txt │ ├── README.md │ ├── test-cnn.cc │ └── test-nodes.cc ├── get_dictionary.py ├── get_oracle.py ├── get_oracle_gen.py ├── get_unkified_terminals.py ├── interpreting-rnng/ │ ├── README.md │ └── nt-parser-gen-attention-gated-stack-only.cc ├── nt-parser/ │ ├── CMakeLists.txt │ ├── compressed-fstream.h │ ├── eval.cc │ ├── eval.h │ ├── nt-parser-gen.cc │ ├── nt-parser.cc │ ├── oracle.cc │ ├── oracle.h │ ├── pretrained.cc │ └── pretrained.h ├── remove_dev_unk.py ├── sample_input_chinese.txt ├── sample_input_english.txt └── utils/ ├── add-fake-preterms-for-eval.pl ├── cut-corpus.pl ├── is-estimate-marginal-llh.pl ├── remove_dev_unk.py └── replace-unks-in-trees.pl