├── README.md ├── dataset ├── bug-fixes │ ├── medium │ │ ├── eval │ │ │ ├── buggy.txt │ │ │ └── fixed.txt │ │ ├── test │ │ │ ├── buggy.txt │ │ │ └── fixed.txt │ │ └── train │ │ │ ├── buggy.txt │ │ │ ├── fixed.txt │ │ │ ├── vocab.buggy.txt │ │ │ └── vocab.fixed.txt │ └── small │ │ ├── eval │ │ ├── buggy.txt │ │ └── fixed.txt │ │ ├── test │ │ ├── buggy.txt │ │ └── fixed.txt │ │ └── train │ │ ├── buggy.txt │ │ ├── fixed.txt │ │ ├── vocab.buggy.txt │ │ └── vocab.fixed.txt └── reviews │ ├── all │ ├── medium │ │ ├── eval │ │ │ ├── buggy.txt │ │ │ └── fixed.txt │ │ ├── test │ │ │ ├── buggy.txt │ │ │ └── fixed.txt │ │ └── train │ │ │ ├── buggy.txt │ │ │ ├── fixed.txt │ │ │ ├── vocab.buggy.txt │ │ │ └── vocab.fixed.txt │ └── small │ │ ├── eval │ │ ├── buggy.txt │ │ └── fixed.txt │ │ ├── test │ │ ├── buggy.txt │ │ └── fixed.txt │ │ └── train │ │ ├── buggy.txt │ │ ├── fixed.txt │ │ ├── vocab.buggy.txt │ │ └── vocab.fixed.txt │ ├── android │ ├── medium │ │ ├── eval │ │ │ ├── buggy.txt │ │ │ └── fixed.txt │ │ ├── test │ │ │ ├── buggy.txt │ │ │ └── fixed.txt │ │ └── train │ │ │ ├── buggy.txt │ │ │ ├── fixed.txt │ │ │ ├── vocab.buggy.txt │ │ │ └── vocab.fixed.txt │ └── small │ │ ├── eval │ │ ├── buggy.txt │ │ └── fixed.txt │ │ ├── test │ │ ├── buggy.txt │ │ └── fixed.txt │ │ └── train │ │ ├── buggy.txt │ │ ├── fixed.txt │ │ ├── vocab.buggy.txt │ │ └── vocab.fixed.txt │ ├── google │ ├── medium │ │ ├── eval │ │ │ ├── buggy.txt │ │ │ └── fixed.txt │ │ ├── test │ │ │ ├── buggy.txt │ │ │ └── fixed.txt │ │ └── train │ │ │ ├── buggy.txt │ │ │ ├── fixed.txt │ │ │ ├── vocab.buggy.txt │ │ │ └── vocab.fixed.txt │ └── small │ │ ├── eval │ │ ├── buggy.txt │ │ └── fixed.txt │ │ ├── test │ │ ├── buggy.txt │ │ └── fixed.txt │ │ └── train │ │ ├── buggy.txt │ │ ├── fixed.txt │ │ ├── vocab.buggy.txt │ │ └── vocab.fixed.txt │ └── ovirt │ ├── medium │ ├── eval │ │ ├── buggy.txt │ │ └── fixed.txt │ ├── test │ │ ├── buggy.txt │ │ └── fixed.txt │ └── train │ │ ├── buggy.txt │ │ ├── fixed.txt │ │ ├── vocab.buggy.txt │ │ └── vocab.fixed.txt │ └── small │ ├── eval │ ├── buggy.txt │ └── fixed.txt │ ├── test │ ├── buggy.txt │ └── fixed.txt │ └── train │ ├── buggy.txt │ ├── fixed.txt │ ├── vocab.buggy.txt │ └── vocab.fixed.txt └── seq2seq ├── bin └── tools │ ├── __pycache__ │ └── generate_beam_viz.cpython-34.pyc │ ├── beam_search_viz │ ├── tree.css │ └── tree.js │ ├── generate_beam_viz.py │ ├── generate_toy_data.py │ ├── generate_vocab.py │ ├── multi-bleu.perl │ └── profile.py ├── configs ├── medium_1.yml ├── medium_10.yml ├── medium_2.yml ├── medium_3.yml ├── medium_4.yml ├── medium_5.yml ├── medium_6.yml ├── medium_7.yml ├── medium_8.yml ├── medium_9.yml ├── small_1.yml ├── small_10.yml ├── small_2.yml ├── small_3.yml ├── small_4.yml ├── small_5.yml ├── small_6.yml ├── small_7.yml ├── small_8.yml └── small_9.yml ├── example_configs ├── nmt_conv.yml ├── nmt_conv_small.yml ├── nmt_large.yml ├── nmt_large_gru.yml ├── nmt_medium.yml ├── nmt_medium_50-100.yml ├── nmt_medium_lstm.yml ├── nmt_medium_rev.yml ├── nmt_mid_large_gru.yml ├── nmt_small.yml ├── text_metrics.yml ├── text_metrics_bpe.yml ├── text_metrics_sp.yml ├── train_seq2seq.yml ├── train_seq2seq_delay_start.yml ├── train_seq2seq_optimized.yml ├── train_seq2seq_optimized_100len.yml └── train_seq2seq_small_steps.yml ├── inference.sh ├── prediction_classifier.py ├── predictions ├── beamPredictions.py ├── beam_prediction_classifier.py └── prediction_classifier.py └── train_test.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/README.md -------------------------------------------------------------------------------- /dataset/bug-fixes/medium/eval/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/bug-fixes/medium/eval/buggy.txt -------------------------------------------------------------------------------- /dataset/bug-fixes/medium/eval/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/bug-fixes/medium/eval/fixed.txt -------------------------------------------------------------------------------- /dataset/bug-fixes/medium/test/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/bug-fixes/medium/test/buggy.txt -------------------------------------------------------------------------------- /dataset/bug-fixes/medium/test/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/bug-fixes/medium/test/fixed.txt -------------------------------------------------------------------------------- /dataset/bug-fixes/medium/train/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/bug-fixes/medium/train/buggy.txt -------------------------------------------------------------------------------- /dataset/bug-fixes/medium/train/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/bug-fixes/medium/train/fixed.txt -------------------------------------------------------------------------------- /dataset/bug-fixes/medium/train/vocab.buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/bug-fixes/medium/train/vocab.buggy.txt -------------------------------------------------------------------------------- /dataset/bug-fixes/medium/train/vocab.fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/bug-fixes/medium/train/vocab.fixed.txt -------------------------------------------------------------------------------- /dataset/bug-fixes/small/eval/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/bug-fixes/small/eval/buggy.txt -------------------------------------------------------------------------------- /dataset/bug-fixes/small/eval/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/bug-fixes/small/eval/fixed.txt -------------------------------------------------------------------------------- /dataset/bug-fixes/small/test/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/bug-fixes/small/test/buggy.txt -------------------------------------------------------------------------------- /dataset/bug-fixes/small/test/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/bug-fixes/small/test/fixed.txt -------------------------------------------------------------------------------- /dataset/bug-fixes/small/train/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/bug-fixes/small/train/buggy.txt -------------------------------------------------------------------------------- /dataset/bug-fixes/small/train/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/bug-fixes/small/train/fixed.txt -------------------------------------------------------------------------------- /dataset/bug-fixes/small/train/vocab.buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/bug-fixes/small/train/vocab.buggy.txt -------------------------------------------------------------------------------- /dataset/bug-fixes/small/train/vocab.fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/bug-fixes/small/train/vocab.fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/all/medium/eval/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/all/medium/eval/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/all/medium/eval/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/all/medium/eval/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/all/medium/test/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/all/medium/test/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/all/medium/test/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/all/medium/test/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/all/medium/train/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/all/medium/train/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/all/medium/train/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/all/medium/train/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/all/medium/train/vocab.buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/all/medium/train/vocab.buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/all/medium/train/vocab.fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/all/medium/train/vocab.fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/all/small/eval/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/all/small/eval/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/all/small/eval/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/all/small/eval/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/all/small/test/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/all/small/test/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/all/small/test/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/all/small/test/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/all/small/train/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/all/small/train/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/all/small/train/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/all/small/train/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/all/small/train/vocab.buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/all/small/train/vocab.buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/all/small/train/vocab.fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/all/small/train/vocab.fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/android/medium/eval/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/android/medium/eval/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/android/medium/eval/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/android/medium/eval/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/android/medium/test/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/android/medium/test/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/android/medium/test/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/android/medium/test/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/android/medium/train/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/android/medium/train/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/android/medium/train/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/android/medium/train/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/android/medium/train/vocab.buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/android/medium/train/vocab.buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/android/medium/train/vocab.fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/android/medium/train/vocab.fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/android/small/eval/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/android/small/eval/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/android/small/eval/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/android/small/eval/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/android/small/test/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/android/small/test/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/android/small/test/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/android/small/test/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/android/small/train/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/android/small/train/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/android/small/train/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/android/small/train/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/android/small/train/vocab.buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/android/small/train/vocab.buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/android/small/train/vocab.fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/android/small/train/vocab.fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/google/medium/eval/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/google/medium/eval/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/google/medium/eval/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/google/medium/eval/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/google/medium/test/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/google/medium/test/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/google/medium/test/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/google/medium/test/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/google/medium/train/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/google/medium/train/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/google/medium/train/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/google/medium/train/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/google/medium/train/vocab.buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/google/medium/train/vocab.buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/google/medium/train/vocab.fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/google/medium/train/vocab.fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/google/small/eval/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/google/small/eval/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/google/small/eval/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/google/small/eval/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/google/small/test/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/google/small/test/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/google/small/test/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/google/small/test/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/google/small/train/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/google/small/train/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/google/small/train/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/google/small/train/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/google/small/train/vocab.buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/google/small/train/vocab.buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/google/small/train/vocab.fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/google/small/train/vocab.fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/ovirt/medium/eval/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/ovirt/medium/eval/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/ovirt/medium/eval/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/ovirt/medium/eval/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/ovirt/medium/test/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/ovirt/medium/test/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/ovirt/medium/test/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/ovirt/medium/test/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/ovirt/medium/train/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/ovirt/medium/train/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/ovirt/medium/train/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/ovirt/medium/train/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/ovirt/medium/train/vocab.buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/ovirt/medium/train/vocab.buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/ovirt/medium/train/vocab.fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/ovirt/medium/train/vocab.fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/ovirt/small/eval/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/ovirt/small/eval/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/ovirt/small/eval/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/ovirt/small/eval/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/ovirt/small/test/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/ovirt/small/test/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/ovirt/small/test/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/ovirt/small/test/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/ovirt/small/train/buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/ovirt/small/train/buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/ovirt/small/train/fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/ovirt/small/train/fixed.txt -------------------------------------------------------------------------------- /dataset/reviews/ovirt/small/train/vocab.buggy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/ovirt/small/train/vocab.buggy.txt -------------------------------------------------------------------------------- /dataset/reviews/ovirt/small/train/vocab.fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/dataset/reviews/ovirt/small/train/vocab.fixed.txt -------------------------------------------------------------------------------- /seq2seq/bin/tools/__pycache__/generate_beam_viz.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/bin/tools/__pycache__/generate_beam_viz.cpython-34.pyc -------------------------------------------------------------------------------- /seq2seq/bin/tools/beam_search_viz/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/bin/tools/beam_search_viz/tree.css -------------------------------------------------------------------------------- /seq2seq/bin/tools/beam_search_viz/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/bin/tools/beam_search_viz/tree.js -------------------------------------------------------------------------------- /seq2seq/bin/tools/generate_beam_viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/bin/tools/generate_beam_viz.py -------------------------------------------------------------------------------- /seq2seq/bin/tools/generate_toy_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/bin/tools/generate_toy_data.py -------------------------------------------------------------------------------- /seq2seq/bin/tools/generate_vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/bin/tools/generate_vocab.py -------------------------------------------------------------------------------- /seq2seq/bin/tools/multi-bleu.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/bin/tools/multi-bleu.perl -------------------------------------------------------------------------------- /seq2seq/bin/tools/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/bin/tools/profile.py -------------------------------------------------------------------------------- /seq2seq/configs/medium_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/medium_1.yml -------------------------------------------------------------------------------- /seq2seq/configs/medium_10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/medium_10.yml -------------------------------------------------------------------------------- /seq2seq/configs/medium_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/medium_2.yml -------------------------------------------------------------------------------- /seq2seq/configs/medium_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/medium_3.yml -------------------------------------------------------------------------------- /seq2seq/configs/medium_4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/medium_4.yml -------------------------------------------------------------------------------- /seq2seq/configs/medium_5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/medium_5.yml -------------------------------------------------------------------------------- /seq2seq/configs/medium_6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/medium_6.yml -------------------------------------------------------------------------------- /seq2seq/configs/medium_7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/medium_7.yml -------------------------------------------------------------------------------- /seq2seq/configs/medium_8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/medium_8.yml -------------------------------------------------------------------------------- /seq2seq/configs/medium_9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/medium_9.yml -------------------------------------------------------------------------------- /seq2seq/configs/small_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/small_1.yml -------------------------------------------------------------------------------- /seq2seq/configs/small_10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/small_10.yml -------------------------------------------------------------------------------- /seq2seq/configs/small_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/small_2.yml -------------------------------------------------------------------------------- /seq2seq/configs/small_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/small_3.yml -------------------------------------------------------------------------------- /seq2seq/configs/small_4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/small_4.yml -------------------------------------------------------------------------------- /seq2seq/configs/small_5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/small_5.yml -------------------------------------------------------------------------------- /seq2seq/configs/small_6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/small_6.yml -------------------------------------------------------------------------------- /seq2seq/configs/small_7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/small_7.yml -------------------------------------------------------------------------------- /seq2seq/configs/small_8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/small_8.yml -------------------------------------------------------------------------------- /seq2seq/configs/small_9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/configs/small_9.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/nmt_conv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/nmt_conv.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/nmt_conv_small.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/nmt_conv_small.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/nmt_large.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/nmt_large.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/nmt_large_gru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/nmt_large_gru.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/nmt_medium.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/nmt_medium.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/nmt_medium_50-100.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/nmt_medium_50-100.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/nmt_medium_lstm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/nmt_medium_lstm.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/nmt_medium_rev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/nmt_medium_rev.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/nmt_mid_large_gru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/nmt_mid_large_gru.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/nmt_small.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/nmt_small.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/text_metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/text_metrics.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/text_metrics_bpe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/text_metrics_bpe.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/text_metrics_sp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/text_metrics_sp.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/train_seq2seq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/train_seq2seq.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/train_seq2seq_delay_start.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/train_seq2seq_delay_start.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/train_seq2seq_optimized.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/train_seq2seq_optimized.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/train_seq2seq_optimized_100len.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/train_seq2seq_optimized_100len.yml -------------------------------------------------------------------------------- /seq2seq/example_configs/train_seq2seq_small_steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/example_configs/train_seq2seq_small_steps.yml -------------------------------------------------------------------------------- /seq2seq/inference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/inference.sh -------------------------------------------------------------------------------- /seq2seq/prediction_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/prediction_classifier.py -------------------------------------------------------------------------------- /seq2seq/predictions/beamPredictions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/predictions/beamPredictions.py -------------------------------------------------------------------------------- /seq2seq/predictions/beam_prediction_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/predictions/beam_prediction_classifier.py -------------------------------------------------------------------------------- /seq2seq/predictions/prediction_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/predictions/prediction_classifier.py -------------------------------------------------------------------------------- /seq2seq/train_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micheletufano/NeuralCodeTranslator/HEAD/seq2seq/train_test.sh --------------------------------------------------------------------------------