gitextract_k9i_pt48/ ├── .gitignore ├── README.md ├── data/ │ ├── test.ape.json │ ├── train.ape.json │ └── valid.ape.json └── onmt/ ├── __init__.py ├── decoders/ │ ├── __init__.py │ ├── cnn_decoder.py │ ├── decoder.py │ ├── ensemble.py │ └── transformer.py ├── encoders/ │ ├── __init__.py │ ├── audio_encoder.py │ ├── cnn_encoder.py │ ├── encoder.py │ ├── image_encoder.py │ ├── mean_encoder.py │ ├── rnn_encoder.py │ └── transformer.py ├── inputters/ │ ├── __init__.py │ ├── audio_dataset.py │ ├── datareader_base.py │ ├── dataset_base.py │ ├── image_dataset.py │ ├── inputter.py │ ├── text_dataset.py │ └── vec_dataset.py ├── model_builder.py ├── models/ │ ├── __init__.py │ ├── model.py │ ├── model_saver.py │ ├── sru.py │ └── stacked_rnn.py ├── modules/ │ ├── __init__.py │ ├── average_attn.py │ ├── conv_multi_step_attention.py │ ├── copy_generator.py │ ├── embeddings.py │ ├── gate.py │ ├── global_attention.py │ ├── multi_headed_attn.py │ ├── position_ffn.py │ ├── sparse_activations.py │ ├── sparse_losses.py │ ├── structured_attention.py │ ├── util_class.py │ └── weight_norm.py ├── opts.py ├── tests/ │ ├── __init__.py │ ├── output_hyp.txt │ ├── pull_request_chk.sh │ ├── rebuild_test_models.sh │ ├── sample_glove.txt │ ├── test_attention.py │ ├── test_audio_dataset.py │ ├── test_beam.py │ ├── test_beam_search.py │ ├── test_copy_generator.py │ ├── test_embeddings.py │ ├── test_image_dataset.py │ ├── test_model2.pt │ ├── test_models.py │ ├── test_models.sh │ ├── test_preprocess.py │ ├── test_random_sampling.py │ ├── test_simple.py │ ├── test_structured_attention.py │ ├── test_text_dataset.py │ ├── test_translation_server.py │ └── utils_for_tests.py ├── train_single.py ├── trainer.py ├── translate/ │ ├── __init__.py │ ├── beam.py │ ├── beam_search.py │ ├── decode_strategy.py │ ├── penalties.py │ ├── random_sampling.py │ ├── translation.py │ ├── translation_server.py │ └── translator.py └── utils/ ├── __init__.py ├── cnn_factory.py ├── distributed.py ├── earlystopping.py ├── logging.py ├── loss.py ├── misc.py ├── optimizers.py ├── parse.py ├── report_manager.py ├── rnn_factory.py └── statistics.py