├── .gitignore ├── LICENSE.txt ├── README.md ├── USAGE.md ├── alex-context ├── .gitignore ├── Makefile ├── config │ └── seq2seq.py ├── input │ ├── Makefile │ └── convert.py └── postprocess │ └── postprocess.py ├── bagel-data ├── .gitignore ├── Makefile ├── config │ ├── asearch.py │ ├── classif.py │ ├── logregrank.py │ ├── percrank.py │ ├── seq2seq.py │ └── tfclassif.py ├── input │ ├── .gitignore │ ├── ACL10-inform-training.txt │ ├── Makefile │ ├── README.md │ ├── convert.pl │ ├── cv_split.py │ ├── en_analysis.scen │ ├── toy-abstr.txt │ ├── toy-das.txt │ └── toy-text.txt └── surface │ └── en_synthesis.scen ├── cs-restaurant ├── .gitignore ├── Makefile ├── README.md ├── config │ └── config.yaml ├── input │ ├── .gitignore │ ├── Makefile │ └── convert.py └── postprocess │ └── postprocess.py ├── e2e-challenge ├── .gitignore ├── Makefile ├── README.md ├── config │ └── config.yaml ├── input │ └── convert.py ├── learning_curve.pl └── postprocess │ └── postprocess.py ├── requirements.txt ├── run_tgen.py ├── setup.py ├── sfx-restaurant ├── .gitignore ├── Makefile ├── README.md ├── config │ ├── asearch.py │ ├── classif.py │ ├── percrank.py │ └── seq2seq.py └── input │ ├── .gitignore │ ├── Makefile │ ├── convert.py │ └── en_analysis.scen ├── tgen ├── __init__.py ├── bleu.py ├── candgen.py ├── classif.py ├── cluster.py ├── config.py ├── data.py ├── debug.py ├── delex.py ├── e2e │ ├── __init__.py │ └── slot_error.py ├── embeddings.py ├── eval.py ├── externals │ ├── __init__.py │ ├── seq2seq.py │ └── six.py ├── features.py ├── futil.py ├── lexicalize.py ├── logf.py ├── ml.py ├── nn.py ├── parallel_percrank_train.py ├── parallel_seq2seq_train.py ├── planner.py ├── rank.py ├── rank_nn.py ├── rnd.py ├── seq2seq.py ├── seq2seq_ensemble.py ├── tf_ml.py ├── tfclassif.py └── tree.py └── util ├── ab_test_stats.py ├── average_scores.pl ├── bench_feats.py ├── bootstrapCompare-v11.2.pl ├── cfg_override.py ├── compute_bootstrap.py ├── describe_experiment.pl ├── describe_experiment.py ├── generateLog-v11.pl ├── grep_scores.pl ├── inspect_data.py ├── join_sets.pl ├── leaf_stats.py ├── mteval-v11b.pl ├── mteval-v13a-sig.pl ├── nowrap.pl ├── paired_bootstrap_resampling_bleu_v13a.pl ├── pickle2yaml.py ├── print_percrank_weights.py ├── sample_parallel_sents.pl ├── select_pairs_for_ab.py ├── test_lru.py ├── test_random.py ├── tfsess_to_params.py ├── to_ttred.sh ├── treex2yaml.sh ├── txt2sgm.py ├── yaml2pickle.py └── yaml2treex.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/README.md -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/USAGE.md -------------------------------------------------------------------------------- /alex-context/.gitignore: -------------------------------------------------------------------------------- 1 | .qsubmit-*.bash 2 | data 3 | runs 4 | input/*.txt 5 | -------------------------------------------------------------------------------- /alex-context/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/alex-context/Makefile -------------------------------------------------------------------------------- /alex-context/config/seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/alex-context/config/seq2seq.py -------------------------------------------------------------------------------- /alex-context/input/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/alex-context/input/Makefile -------------------------------------------------------------------------------- /alex-context/input/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/alex-context/input/convert.py -------------------------------------------------------------------------------- /alex-context/postprocess/postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/alex-context/postprocess/postprocess.py -------------------------------------------------------------------------------- /bagel-data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/.gitignore -------------------------------------------------------------------------------- /bagel-data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/Makefile -------------------------------------------------------------------------------- /bagel-data/config/asearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/config/asearch.py -------------------------------------------------------------------------------- /bagel-data/config/classif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/config/classif.py -------------------------------------------------------------------------------- /bagel-data/config/logregrank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/config/logregrank.py -------------------------------------------------------------------------------- /bagel-data/config/percrank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/config/percrank.py -------------------------------------------------------------------------------- /bagel-data/config/seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/config/seq2seq.py -------------------------------------------------------------------------------- /bagel-data/config/tfclassif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/config/tfclassif.py -------------------------------------------------------------------------------- /bagel-data/input/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/input/.gitignore -------------------------------------------------------------------------------- /bagel-data/input/ACL10-inform-training.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/input/ACL10-inform-training.txt -------------------------------------------------------------------------------- /bagel-data/input/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/input/Makefile -------------------------------------------------------------------------------- /bagel-data/input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/input/README.md -------------------------------------------------------------------------------- /bagel-data/input/convert.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/input/convert.pl -------------------------------------------------------------------------------- /bagel-data/input/cv_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/input/cv_split.py -------------------------------------------------------------------------------- /bagel-data/input/en_analysis.scen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/input/en_analysis.scen -------------------------------------------------------------------------------- /bagel-data/input/toy-abstr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/input/toy-abstr.txt -------------------------------------------------------------------------------- /bagel-data/input/toy-das.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/input/toy-das.txt -------------------------------------------------------------------------------- /bagel-data/input/toy-text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/input/toy-text.txt -------------------------------------------------------------------------------- /bagel-data/surface/en_synthesis.scen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/bagel-data/surface/en_synthesis.scen -------------------------------------------------------------------------------- /cs-restaurant/.gitignore: -------------------------------------------------------------------------------- 1 | .qsubmit-*.bash 2 | data 3 | runs 4 | -------------------------------------------------------------------------------- /cs-restaurant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/cs-restaurant/Makefile -------------------------------------------------------------------------------- /cs-restaurant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/cs-restaurant/README.md -------------------------------------------------------------------------------- /cs-restaurant/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/cs-restaurant/config/config.yaml -------------------------------------------------------------------------------- /cs-restaurant/input/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/cs-restaurant/input/.gitignore -------------------------------------------------------------------------------- /cs-restaurant/input/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/cs-restaurant/input/Makefile -------------------------------------------------------------------------------- /cs-restaurant/input/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/cs-restaurant/input/convert.py -------------------------------------------------------------------------------- /cs-restaurant/postprocess/postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/cs-restaurant/postprocess/postprocess.py -------------------------------------------------------------------------------- /e2e-challenge/.gitignore: -------------------------------------------------------------------------------- 1 | .qsubmit-*.bash 2 | data 3 | runs 4 | *.bak 5 | -------------------------------------------------------------------------------- /e2e-challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/e2e-challenge/Makefile -------------------------------------------------------------------------------- /e2e-challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/e2e-challenge/README.md -------------------------------------------------------------------------------- /e2e-challenge/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/e2e-challenge/config/config.yaml -------------------------------------------------------------------------------- /e2e-challenge/input/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/e2e-challenge/input/convert.py -------------------------------------------------------------------------------- /e2e-challenge/learning_curve.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/e2e-challenge/learning_curve.pl -------------------------------------------------------------------------------- /e2e-challenge/postprocess/postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/e2e-challenge/postprocess/postprocess.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_tgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/run_tgen.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/setup.py -------------------------------------------------------------------------------- /sfx-restaurant/.gitignore: -------------------------------------------------------------------------------- 1 | runs 2 | data 3 | .qsubmit-* 4 | model 5 | -------------------------------------------------------------------------------- /sfx-restaurant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/sfx-restaurant/Makefile -------------------------------------------------------------------------------- /sfx-restaurant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/sfx-restaurant/README.md -------------------------------------------------------------------------------- /sfx-restaurant/config/asearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/sfx-restaurant/config/asearch.py -------------------------------------------------------------------------------- /sfx-restaurant/config/classif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/sfx-restaurant/config/classif.py -------------------------------------------------------------------------------- /sfx-restaurant/config/percrank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/sfx-restaurant/config/percrank.py -------------------------------------------------------------------------------- /sfx-restaurant/config/seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/sfx-restaurant/config/seq2seq.py -------------------------------------------------------------------------------- /sfx-restaurant/input/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/sfx-restaurant/input/.gitignore -------------------------------------------------------------------------------- /sfx-restaurant/input/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/sfx-restaurant/input/Makefile -------------------------------------------------------------------------------- /sfx-restaurant/input/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/sfx-restaurant/input/convert.py -------------------------------------------------------------------------------- /sfx-restaurant/input/en_analysis.scen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/sfx-restaurant/input/en_analysis.scen -------------------------------------------------------------------------------- /tgen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tgen/bleu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/bleu.py -------------------------------------------------------------------------------- /tgen/candgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/candgen.py -------------------------------------------------------------------------------- /tgen/classif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/classif.py -------------------------------------------------------------------------------- /tgen/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/cluster.py -------------------------------------------------------------------------------- /tgen/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/config.py -------------------------------------------------------------------------------- /tgen/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/data.py -------------------------------------------------------------------------------- /tgen/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/debug.py -------------------------------------------------------------------------------- /tgen/delex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/delex.py -------------------------------------------------------------------------------- /tgen/e2e/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tgen/e2e/slot_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/e2e/slot_error.py -------------------------------------------------------------------------------- /tgen/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/embeddings.py -------------------------------------------------------------------------------- /tgen/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/eval.py -------------------------------------------------------------------------------- /tgen/externals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tgen/externals/seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/externals/seq2seq.py -------------------------------------------------------------------------------- /tgen/externals/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/externals/six.py -------------------------------------------------------------------------------- /tgen/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/features.py -------------------------------------------------------------------------------- /tgen/futil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/futil.py -------------------------------------------------------------------------------- /tgen/lexicalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/lexicalize.py -------------------------------------------------------------------------------- /tgen/logf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/logf.py -------------------------------------------------------------------------------- /tgen/ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/ml.py -------------------------------------------------------------------------------- /tgen/nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/nn.py -------------------------------------------------------------------------------- /tgen/parallel_percrank_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/parallel_percrank_train.py -------------------------------------------------------------------------------- /tgen/parallel_seq2seq_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/parallel_seq2seq_train.py -------------------------------------------------------------------------------- /tgen/planner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/planner.py -------------------------------------------------------------------------------- /tgen/rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/rank.py -------------------------------------------------------------------------------- /tgen/rank_nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/rank_nn.py -------------------------------------------------------------------------------- /tgen/rnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/rnd.py -------------------------------------------------------------------------------- /tgen/seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/seq2seq.py -------------------------------------------------------------------------------- /tgen/seq2seq_ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/seq2seq_ensemble.py -------------------------------------------------------------------------------- /tgen/tf_ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/tf_ml.py -------------------------------------------------------------------------------- /tgen/tfclassif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/tfclassif.py -------------------------------------------------------------------------------- /tgen/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/tgen/tree.py -------------------------------------------------------------------------------- /util/ab_test_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/ab_test_stats.py -------------------------------------------------------------------------------- /util/average_scores.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/average_scores.pl -------------------------------------------------------------------------------- /util/bench_feats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/bench_feats.py -------------------------------------------------------------------------------- /util/bootstrapCompare-v11.2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/bootstrapCompare-v11.2.pl -------------------------------------------------------------------------------- /util/cfg_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/cfg_override.py -------------------------------------------------------------------------------- /util/compute_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/compute_bootstrap.py -------------------------------------------------------------------------------- /util/describe_experiment.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/describe_experiment.pl -------------------------------------------------------------------------------- /util/describe_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/describe_experiment.py -------------------------------------------------------------------------------- /util/generateLog-v11.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/generateLog-v11.pl -------------------------------------------------------------------------------- /util/grep_scores.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/grep_scores.pl -------------------------------------------------------------------------------- /util/inspect_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/inspect_data.py -------------------------------------------------------------------------------- /util/join_sets.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/join_sets.pl -------------------------------------------------------------------------------- /util/leaf_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/leaf_stats.py -------------------------------------------------------------------------------- /util/mteval-v11b.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/mteval-v11b.pl -------------------------------------------------------------------------------- /util/mteval-v13a-sig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/mteval-v13a-sig.pl -------------------------------------------------------------------------------- /util/nowrap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/nowrap.pl -------------------------------------------------------------------------------- /util/paired_bootstrap_resampling_bleu_v13a.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/paired_bootstrap_resampling_bleu_v13a.pl -------------------------------------------------------------------------------- /util/pickle2yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/pickle2yaml.py -------------------------------------------------------------------------------- /util/print_percrank_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/print_percrank_weights.py -------------------------------------------------------------------------------- /util/sample_parallel_sents.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/sample_parallel_sents.pl -------------------------------------------------------------------------------- /util/select_pairs_for_ab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/select_pairs_for_ab.py -------------------------------------------------------------------------------- /util/test_lru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/test_lru.py -------------------------------------------------------------------------------- /util/test_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/test_random.py -------------------------------------------------------------------------------- /util/tfsess_to_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/tfsess_to_params.py -------------------------------------------------------------------------------- /util/to_ttred.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/to_ttred.sh -------------------------------------------------------------------------------- /util/treex2yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/treex2yaml.sh -------------------------------------------------------------------------------- /util/txt2sgm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/txt2sgm.py -------------------------------------------------------------------------------- /util/yaml2pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/yaml2pickle.py -------------------------------------------------------------------------------- /util/yaml2treex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UFAL-DSG/tgen/HEAD/util/yaml2treex.sh --------------------------------------------------------------------------------