gitextract_7rhl_yau/ ├── .gitattributes ├── .gitignore ├── README.md ├── README_XING.md ├── executable/ │ ├── ZOPH_RNN_1 │ ├── ZOPH_RNN_2 │ ├── ZOPH_RNN_3 │ ├── ZOPH_RNN_4 │ └── ZOPH_RNN_XING ├── sample_data/ │ ├── dev_english.txt.tok.lc │ ├── dev_french.txt.tok.lc │ ├── ptb.train.txt │ ├── ptb.valid.txt │ ├── test_english.tok.lc │ ├── test_french.tok.lc │ ├── train_english.txt.tok.lc.10k │ └── train_french.txt.tok.lc.10k ├── scripts/ │ ├── att_unk_rep.py │ ├── berk_aligner/ │ │ ├── berkeleyaligner.jar │ │ ├── run_aligner.sh │ │ └── unk_replace.conf │ ├── bleu_format.py │ ├── bleu_format_valid.py │ ├── compile.sh │ ├── compile.xing.sh │ ├── create_vocab_mapping_file.py │ ├── create_vocab_mapping_file_preinit.py │ ├── fsa/ │ │ ├── convert.py │ │ ├── demo.sh │ │ ├── enc1.txt │ │ ├── enc2.txt │ │ ├── fsa.txt │ │ ├── generate_fsa.py │ │ ├── source.singleline.txt │ │ ├── source.test.txt │ │ ├── source.train.txt │ │ ├── source.valid.txt │ │ ├── target.test.txt │ │ ├── target.train.txt │ │ └── target.valid.txt │ ├── generate_train_decode.py │ ├── load_lstm.py │ ├── load_model.py │ ├── multi-bleu.perl │ ├── pretrain.py │ ├── read_hpc_output.py │ ├── translate/ │ │ ├── f2e_decode.sh │ │ └── f2e_train.sh │ └── unk_format.py └── src/ ├── BZ_CUDA_UTIL.h ├── Eigen_Util.h ├── Full_Input_To_Hidden_Layer.h ├── Hidden_To_Hidden_Layer.h ├── Hidden_To_Hidden_Layer.hpp ├── Input_To_Hidden_Layer.h ├── Input_To_Hidden_Layer.hpp ├── LSH_WTA.h ├── LSTM.h ├── LSTM.hpp ├── LSTM_HH.h ├── LSTM_HH.hpp ├── NCE.h ├── NCE.hpp ├── NCE_node.h ├── add_model_info.h ├── attention_combiner.h ├── attention_combiner.hpp ├── attention_combiner_node.h ├── attention_combiner_node.hpp ├── attention_layer.h ├── attention_layer.hpp ├── attention_node.h ├── attention_node.hpp ├── base_layer.h ├── base_layer.hpp ├── base_loss.h ├── bi_encoder.h ├── bi_encoder.hpp ├── charCNN_node.h ├── char_file_helper.h ├── conv_char.h ├── conv_char.hpp ├── custom_kernels.h ├── decoder.h ├── decoder_model_wrapper.h ├── decoder_model_wrapper.hpp ├── encoder_multi_source.h ├── encoder_multi_source.hpp ├── ensemble_factory.h ├── ensemble_factory.hpp ├── fileHelper.h ├── fileHelper_source.h ├── file_helper_char_decoder.h ├── file_helper_decoder.h ├── format.cc ├── format.h ├── fsa.h ├── fsa.hpp ├── global_params.h ├── gpu_info_struct.h ├── highway_network.h ├── highway_network.hpp ├── highway_node.h ├── input_file_prep.h ├── input_file_prep.hpp ├── logger.h ├── main.cu ├── memory_util.h ├── model.h ├── model.hpp ├── multinomial.h ├── prev_states.h ├── softmax.h ├── softmax.hpp ├── softmax_node.h ├── transfer_layer.h ├── tree_LSTM.h ├── tree_LSTM.hpp └── trunc_softmax.h