├── .gitignore ├── .travis.yml ├── BUILDING ├── CMakeLists.txt ├── LICENSE.txt ├── README.cmake ├── README.md ├── THREADS.txt ├── cmake ├── FindEigen3.cmake ├── FindGMock.cmake ├── FindLibDL.cmake └── FindRT.cmake ├── compound-split ├── README.md ├── cdec-de.ini ├── compound-split.pl ├── de │ ├── TRAIN │ ├── badlist.de │ ├── cdec-train.ini │ ├── dev.nouns │ ├── train.in-ref │ ├── weights.noun-only-1best-only │ ├── weights.ptinit │ ├── weights.trained │ └── wordlist.de ├── examples.de │ ├── infile.txt │ ├── out.plf │ └── out.txt ├── install-data-deps.sh ├── lattice-stats.py └── make-dict.pl ├── config.h.cmake ├── corpus ├── README.md ├── add-self-translations.pl ├── add-sos-eos.pl ├── conll2cdec.pl ├── corpus-stats.pl ├── cut-corpus.pl ├── filter-length.pl ├── lowercase.pl ├── moses-scfg-to-cdec.pl ├── moses-xml.pl ├── paste-files.pl ├── sample-dev-sets.py ├── support │ ├── README │ ├── fix-contract.pl │ ├── fix-eos.pl │ ├── quote-norm.pl │ ├── token_list │ ├── token_patterns │ ├── tokenizer.pl │ ├── utf8-normalize-batch.pl │ └── utf8-normalize.sh ├── tokenize-anything.sh ├── tokenize-parallel.py ├── untok.pl ├── utf8-normalize.sh └── xml-tok.py ├── decoder ├── CMakeLists.txt ├── aligner.cc ├── aligner.h ├── apply_models.cc ├── apply_models.h ├── bottom_up_parser-rs.cc ├── bottom_up_parser-rs.h ├── bottom_up_parser.cc ├── bottom_up_parser.h ├── cdec.cc ├── cdec_ff.cc ├── csplit.cc ├── csplit.h ├── decoder.cc ├── decoder.h ├── earley_composer.cc ├── earley_composer.h ├── factored_lexicon_helper.cc ├── factored_lexicon_helper.h ├── ff.cc ├── ff.h ├── ff_basic.cc ├── ff_basic.h ├── ff_bleu.cc ├── ff_bleu.h ├── ff_charset.cc ├── ff_charset.h ├── ff_conll.cc ├── ff_conll.h ├── ff_const_reorder.cc ├── ff_const_reorder.h ├── ff_const_reorder_common.h ├── ff_context.cc ├── ff_context.h ├── ff_csplit.cc ├── ff_csplit.h ├── ff_external.cc ├── ff_external.h ├── ff_factory.cc ├── ff_factory.h ├── ff_klm.cc ├── ff_klm.h ├── ff_lexical.h ├── ff_lm.cc ├── ff_lm.h ├── ff_ngrams.cc ├── ff_ngrams.h ├── ff_parse_match.cc ├── ff_parse_match.h ├── ff_register.h ├── ff_rules.cc ├── ff_rules.h ├── ff_ruleshape.cc ├── ff_ruleshape.h ├── ff_sample_fsa.h ├── ff_soft_syn.cc ├── ff_soft_syn.h ├── ff_soft_syntax.cc ├── ff_soft_syntax.h ├── ff_soft_syntax_mindist.cc ├── ff_soft_syntax_mindist.h ├── ff_source_path.cc ├── ff_source_path.h ├── ff_source_syntax.cc ├── ff_source_syntax.h ├── ff_source_syntax2.cc ├── ff_source_syntax2.h ├── ff_spans.cc ├── ff_spans.h ├── ff_tagger.cc ├── ff_tagger.h ├── ff_wordalign.cc ├── ff_wordalign.h ├── ff_wordset.cc ├── ff_wordset.h ├── ffset.cc ├── ffset.h ├── forest_writer.cc ├── forest_writer.h ├── freqdict.h ├── fst_translator.cc ├── grammar.cc ├── grammar.h ├── grammar_test.cc ├── hg.cc ├── hg.h ├── hg_intersect.cc ├── hg_intersect.h ├── hg_io.cc ├── hg_io.h ├── hg_remove_eps.cc ├── hg_remove_eps.h ├── hg_sampler.cc ├── hg_sampler.h ├── hg_test.cc ├── hg_test.h ├── hg_union.cc ├── hg_union.h ├── incremental.cc ├── incremental.h ├── inside_outside.h ├── kbest.h ├── lattice.cc ├── lattice.h ├── lexalign.cc ├── lexalign.h ├── lextrans.cc ├── lextrans.h ├── maxtrans_blunsom.cc ├── node_state_hash.h ├── nt_span.h ├── oracle_bleu.h ├── parser_test.cc ├── phrasebased_translator.cc ├── phrasebased_translator.h ├── phrasetable_fst.cc ├── phrasetable_fst.h ├── program_options.h ├── rescore_translator.cc ├── rule_lexer.h ├── rule_lexer.ll ├── scfg_translator.cc ├── sentence_metadata.h ├── sentences.h ├── t2s_test.cc ├── tagger.cc ├── tagger.h ├── test_data │ ├── dummy.3gram.lm │ ├── grammar.prune │ ├── hg_test.hg │ ├── hg_test.hg.bin.gz │ ├── hg_test.hg_balanced │ ├── hg_test.hg_balanced.bin.gz │ ├── hg_test.hg_int │ ├── hg_test.hg_int.bin.gz │ ├── hg_test.lattice │ ├── hg_test.lattice.bin.gz │ ├── hg_test.tiny │ ├── hg_test.tiny.bin.gz │ ├── hg_test.tiny_lattice │ ├── hg_test.tiny_lattice.bin.gz │ ├── small.bin.gz │ ├── test_2gram.lm.gz │ └── weights.gt ├── translator.cc ├── translator.h ├── tree2string_translator.cc ├── tree_fragment.cc ├── tree_fragment.h ├── trule.cc ├── trule.h ├── trule_test.cc ├── viterbi.cc └── viterbi.h ├── environment └── LocalConfig.pm ├── example_extff ├── CMakeLists.txt ├── README.md └── ff_example.cc ├── extractor ├── CMakeLists.txt ├── README.md ├── alignment.cc ├── alignment.h ├── alignment_test.cc ├── backoff_sampler.cc ├── backoff_sampler.h ├── data_array.cc ├── data_array.h ├── data_array_test.cc ├── extract.cc ├── fast_intersector.cc ├── fast_intersector.h ├── fast_intersector_test.cc ├── features │ ├── count_source_target.cc │ ├── count_source_target.h │ ├── count_source_target_test.cc │ ├── feature.cc │ ├── feature.h │ ├── is_source_singleton.cc │ ├── is_source_singleton.h │ ├── is_source_singleton_test.cc │ ├── is_source_target_singleton.cc │ ├── is_source_target_singleton.h │ ├── is_source_target_singleton_test.cc │ ├── max_lex_source_given_target.cc │ ├── max_lex_source_given_target.h │ ├── max_lex_source_given_target_test.cc │ ├── max_lex_target_given_source.cc │ ├── max_lex_target_given_source.h │ ├── max_lex_target_given_source_test.cc │ ├── sample_source_count.cc │ ├── sample_source_count.h │ ├── sample_source_count_test.cc │ ├── target_given_source_coherent.cc │ ├── target_given_source_coherent.h │ └── target_given_source_coherent_test.cc ├── grammar.cc ├── grammar.h ├── grammar_extractor.cc ├── grammar_extractor.h ├── grammar_extractor_test.cc ├── matchings_finder.cc ├── matchings_finder.h ├── matchings_finder_test.cc ├── matchings_sampler.cc ├── matchings_sampler.h ├── matchings_sampler_test.cc ├── matchings_trie.cc ├── matchings_trie.h ├── mocks │ ├── mock_alignment.h │ ├── mock_data_array.h │ ├── mock_fast_intersector.h │ ├── mock_feature.h │ ├── mock_matchings_finder.h │ ├── mock_matchings_sampler.h │ ├── mock_precomputation.h │ ├── mock_rule_extractor.h │ ├── mock_rule_extractor_helper.h │ ├── mock_rule_factory.h │ ├── mock_sampler.h │ ├── mock_scorer.h │ ├── mock_suffix_array.h │ ├── mock_suffix_array_sampler.h │ ├── mock_target_phrase_extractor.h │ ├── mock_translation_table.h │ └── mock_vocabulary.h ├── phrase.cc ├── phrase.h ├── phrase_builder.cc ├── phrase_builder.h ├── phrase_location.cc ├── phrase_location.h ├── phrase_location_sampler.cc ├── phrase_location_sampler.h ├── phrase_location_sampler_test.cc ├── phrase_test.cc ├── precomputation.cc ├── precomputation.h ├── precomputation_test.cc ├── rule.cc ├── rule.h ├── rule_extractor.cc ├── rule_extractor.h ├── rule_extractor_helper.cc ├── rule_extractor_helper.h ├── rule_extractor_helper_test.cc ├── rule_extractor_test.cc ├── rule_factory.cc ├── rule_factory.h ├── rule_factory_test.cc ├── run_extractor.cc ├── sacompile.cc ├── sample_alignment.txt ├── sample_bitext.txt ├── sample_source.txt ├── sampler.h ├── scorer.cc ├── scorer.h ├── scorer2_test.cc ├── suffix_array.cc ├── suffix_array.h ├── suffix_array_sampler.cc ├── suffix_array_sampler.h ├── suffix_array_sampler_test.cc ├── suffix_array_test.cc ├── target_phrase_extractor.cc ├── target_phrase_extractor.h ├── target_phrase_extractor_test.cc ├── time_util.cc ├── time_util.h ├── translation_table.cc ├── translation_table.h ├── translation_table_test.cc ├── vocabulary.cc ├── vocabulary.h └── vocabulary_test.cc ├── klm ├── COPYING ├── COPYING.LESSER ├── LICENSE ├── README.md ├── lm │ ├── CMakeLists.txt │ ├── bhiksha.cc │ ├── bhiksha.hh │ ├── binary_format.cc │ ├── binary_format.hh │ ├── blank.hh │ ├── build_binary_main.cc │ ├── builder │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── TODO │ │ ├── adjust_counts.cc │ │ ├── adjust_counts.hh │ │ ├── adjust_counts_test.cc │ │ ├── corpus_count.cc │ │ ├── corpus_count.hh │ │ ├── corpus_count_test.cc │ │ ├── discount.hh │ │ ├── dump_counts_main.cc │ │ ├── hash_gamma.hh │ │ ├── header_info.hh │ │ ├── initial_probabilities.cc │ │ ├── initial_probabilities.hh │ │ ├── interpolate.cc │ │ ├── interpolate.hh │ │ ├── joint_order.hh │ │ ├── lmplz_main.cc │ │ ├── multi_stream.hh │ │ ├── ngram.hh │ │ ├── ngram_stream.hh │ │ ├── pipeline.cc │ │ ├── pipeline.hh │ │ ├── print.cc │ │ ├── print.hh │ │ └── sort.hh │ ├── config.cc │ ├── config.hh │ ├── enumerate_vocab.hh │ ├── facade.hh │ ├── filter │ │ ├── arpa_io.cc │ │ ├── arpa_io.hh │ │ ├── count_io.hh │ │ ├── filter_main.cc │ │ ├── format.hh │ │ ├── phrase.cc │ │ ├── phrase.hh │ │ ├── phrase_table_vocab_main.cc │ │ ├── thread.hh │ │ ├── vocab.cc │ │ ├── vocab.hh │ │ └── wrapper.hh │ ├── fragment_main.cc │ ├── interpolate │ │ ├── arpa_to_stream.cc │ │ ├── arpa_to_stream.hh │ │ └── example_sort_main.cc │ ├── left.hh │ ├── left_test.cc │ ├── lm_exception.cc │ ├── lm_exception.hh │ ├── max_order.hh │ ├── model.cc │ ├── model.hh │ ├── model_test.cc │ ├── model_type.hh │ ├── neural │ │ ├── wordvecs.cc │ │ └── wordvecs.hh │ ├── ngram_query.hh │ ├── partial.hh │ ├── partial_test.cc │ ├── quantize.cc │ ├── quantize.hh │ ├── query_main.cc │ ├── read_arpa.cc │ ├── read_arpa.hh │ ├── return.hh │ ├── search_hashed.cc │ ├── search_hashed.hh │ ├── search_trie.cc │ ├── search_trie.hh │ ├── sizes.cc │ ├── sizes.hh │ ├── state.hh │ ├── test.arpa │ ├── test_nounk.arpa │ ├── trie.cc │ ├── trie.hh │ ├── trie_sort.cc │ ├── trie_sort.hh │ ├── value.hh │ ├── value_build.cc │ ├── value_build.hh │ ├── virtual_interface.cc │ ├── virtual_interface.hh │ ├── vocab.cc │ ├── vocab.hh │ ├── weights.hh │ ├── word_index.hh │ └── wrappers │ │ ├── README │ │ ├── nplm.cc │ │ └── nplm.hh ├── search │ ├── CMakeLists.txt │ ├── applied.hh │ ├── config.hh │ ├── context.hh │ ├── dedupe.hh │ ├── edge.hh │ ├── edge_generator.cc │ ├── edge_generator.hh │ ├── header.hh │ ├── nbest.cc │ ├── nbest.hh │ ├── rule.cc │ ├── rule.hh │ ├── types.hh │ ├── vertex.cc │ ├── vertex.hh │ ├── vertex_generator.cc │ └── vertex_generator.hh └── util │ ├── CMakeLists.txt │ ├── bit_packing.cc │ ├── bit_packing.hh │ ├── bit_packing_test.cc │ ├── cat_compressed_main.cc │ ├── double-conversion │ ├── CMakeLists.txt │ ├── LICENSE │ ├── bignum-dtoa.cc │ ├── bignum-dtoa.h │ ├── bignum.cc │ ├── bignum.h │ ├── cached-powers.cc │ ├── cached-powers.h │ ├── diy-fp.cc │ ├── diy-fp.h │ ├── double-conversion.cc │ ├── double-conversion.h │ ├── fast-dtoa.cc │ ├── fast-dtoa.h │ ├── fixed-dtoa.cc │ ├── fixed-dtoa.h │ ├── ieee.h │ ├── strtod.cc │ ├── strtod.h │ └── utils.h │ ├── ersatz_progress.cc │ ├── ersatz_progress.hh │ ├── exception.cc │ ├── exception.hh │ ├── fake_ofstream.hh │ ├── file.cc │ ├── file.hh │ ├── file_piece.cc │ ├── file_piece.hh │ ├── file_piece_test.cc │ ├── fixed_array.hh │ ├── getopt.c │ ├── getopt.hh │ ├── have.hh │ ├── joint_sort.hh │ ├── joint_sort_test.cc │ ├── mmap.cc │ ├── mmap.hh │ ├── multi_intersection.hh │ ├── multi_intersection_test.cc │ ├── murmur_hash.cc │ ├── murmur_hash.hh │ ├── parallel_read.cc │ ├── parallel_read.hh │ ├── pcqueue.hh │ ├── pcqueue_test.cc │ ├── pool.cc │ ├── pool.hh │ ├── probing_hash_table.hh │ ├── probing_hash_table_test.cc │ ├── proxy_iterator.hh │ ├── read_compressed.cc │ ├── read_compressed.hh │ ├── read_compressed_test.cc │ ├── scoped.cc │ ├── scoped.hh │ ├── sized_iterator.hh │ ├── sized_iterator_test.cc │ ├── sorted_uniform.hh │ ├── sorted_uniform_test.cc │ ├── stream │ ├── CMakeLists.txt │ ├── block.hh │ ├── chain.cc │ ├── chain.hh │ ├── config.hh │ ├── io.cc │ ├── io.hh │ ├── io_test.cc │ ├── line_input.cc │ ├── line_input.hh │ ├── multi_progress.cc │ ├── multi_progress.hh │ ├── multi_stream.hh │ ├── sort.hh │ ├── sort_test.cc │ ├── stream.hh │ ├── stream_test.cc │ └── timer.hh │ ├── string_piece.cc │ ├── string_piece.hh │ ├── string_piece_hash.hh │ ├── thread_pool.hh │ ├── tokenize_piece.hh │ ├── tokenize_piece_test.cc │ ├── unistd.hh │ ├── usage.cc │ └── usage.hh ├── mteval ├── CMakeLists.txt ├── README.protocol ├── aer_scorer.cc ├── aer_scorer.h ├── comb_scorer.cc ├── comb_scorer.h ├── external_scorer.cc ├── external_scorer.h ├── fast_score.cc ├── levenshtein.h ├── mbr.pl ├── mbr_kbest.cc ├── meteor_jar.cc.in ├── ns.cc ├── ns.h ├── ns_cer.cc ├── ns_cer.h ├── ns_comb.cc ├── ns_comb.h ├── ns_docscorer.cc ├── ns_docscorer.h ├── ns_ext.cc ├── ns_ext.h ├── ns_ssk.cc ├── ns_ssk.h ├── ns_ter.cc ├── ns_ter.h ├── ns_ter_impl.cc ├── ns_ter_impl.h ├── ns_wer.cc ├── ns_wer.h ├── scorer.cc ├── scorer.h ├── scorer_test.cc ├── ter.cc ├── ter.h ├── test_data │ ├── devset.txt │ ├── re.txt.0 │ ├── re.txt.1 │ ├── re.txt.2 │ └── re.txt.3 ├── wer.cc └── wer.h ├── python ├── README.md ├── cdec │ ├── __init__.py │ ├── _cdec.cpp │ ├── _cdec.pyx │ ├── configobj.py │ ├── decoder.pxd │ ├── grammar.pxd │ ├── grammar.pxi │ ├── hypergraph.pxd │ ├── hypergraph.pxi │ ├── kbest.pxd │ ├── lattice.pxd │ ├── lattice.pxi │ ├── mteval.pxd │ ├── mteval.pxi │ ├── observer.h │ ├── py_scorer.h │ ├── sa │ │ ├── __init__.py │ │ ├── _sa.cpp │ │ ├── _sa.pxd │ │ ├── _sa.pyx │ │ ├── alignment.pxi │ │ ├── bilex.pxi │ │ ├── compile.py │ │ ├── data_array.pxi │ │ ├── extract.py │ │ ├── extractor.py │ │ ├── features.pxi │ │ ├── features.py │ │ ├── float_list.pxi │ │ ├── int_list.pxi │ │ ├── lcp.pxi │ │ ├── online.py │ │ ├── precomputation.pxi │ │ ├── rule.pxi │ │ ├── rulefactory.pxi │ │ ├── str_map.pxi │ │ ├── strmap.cc │ │ ├── strmap.h │ │ ├── suffix_array.pxi │ │ ├── sym.pxi │ │ └── veb.pxi │ ├── score.py │ ├── utils.pxd │ └── vectors.pxi ├── examples │ ├── cdec-mt.py │ ├── rampion.py │ └── test.py ├── setup.py.in └── tests │ ├── extractor │ ├── corpus.al.gz │ ├── corpus.fr-en.gz │ ├── gold-rules.sort │ ├── refmt.py │ ├── rules.sort │ ├── run.sh │ ├── test.in │ └── test.vis │ └── test_decoder.py ├── realtime ├── README.md ├── mkconfig.py ├── mkinput.py ├── realtime.py └── rt │ ├── __init__.py │ ├── aligner.py │ ├── decoder.py │ ├── rt.py │ └── util.py ├── tests ├── IPC │ └── Run3.pm ├── README ├── issues │ └── 5 │ │ ├── mapoutput.abj.gz │ │ ├── test-error.sh │ │ └── weights.0 ├── run-system-tests.pl ├── system_tests │ ├── australia-align │ │ ├── australia.scfg.gz │ │ ├── cdec.ini │ │ ├── gold.statistics │ │ ├── gold.stdout │ │ ├── input.txt │ │ ├── stderr │ │ └── weights │ ├── australia │ │ ├── australia.scfg.gz │ │ ├── cdec.ini │ │ ├── gold.statistics │ │ ├── gold.stdout │ │ ├── input.txt │ │ ├── stderr │ │ └── weights │ ├── cfg_rescore │ │ ├── README │ │ ├── cdec.ini │ │ ├── gold.statistics │ │ ├── gold.stdout │ │ ├── input.cfg │ │ ├── input.txt │ │ ├── input0.hg.bin.gz │ │ └── weights │ ├── conll │ │ ├── README │ │ ├── cdec.ini │ │ ├── gold.statistics │ │ ├── gold.stdout │ │ ├── input.conll │ │ ├── input.txt │ │ ├── tagset.txt │ │ └── weights │ ├── controlled_synparse │ │ ├── cdec.ini │ │ ├── gold.statistics │ │ ├── gold.stdout │ │ ├── input.txt │ │ └── scfg.biparse.gz │ ├── ftrans │ │ ├── cdec.ini │ │ ├── ftrans.pt │ │ ├── gold.statistics │ │ ├── gold.stdout │ │ ├── input.cfg │ │ ├── input.txt │ │ ├── input0.hg.bin.gz │ │ └── weights │ ├── hmm │ │ ├── cdec.ini │ │ ├── gold.statistics │ │ ├── gold.stdout │ │ ├── input.txt │ │ └── weights │ ├── lattice │ │ ├── cdec.ini │ │ ├── gold.statistics │ │ ├── gold.stdout │ │ ├── input.txt │ │ ├── lattice.scfg │ │ └── weights │ ├── mcle_gradient │ │ ├── cdec.ini │ │ ├── gold.statistics │ │ ├── gold.stdout │ │ ├── input.txt │ │ ├── test.grammar.gz │ │ └── weights │ ├── multigram │ │ ├── cdec.ini │ │ ├── g1.scfg │ │ ├── g2.scfg │ │ ├── gold.statistics │ │ ├── gold.stdout │ │ ├── input.txt │ │ └── weights │ ├── t2s │ │ ├── cdec.ini │ │ ├── gold.statistics │ │ ├── gold.stdout │ │ ├── grammar.t2s │ │ ├── input.txt │ │ └── weights │ ├── tagger │ │ ├── TRAIN │ │ ├── cdec.ini │ │ ├── gold.statistics │ │ ├── gold.stdout │ │ ├── input.txt │ │ ├── pos.grammar │ │ ├── tagset │ │ └── weights │ └── unsup-align │ │ ├── cdec.ini │ │ ├── gold.statistics │ │ ├── gold.stdout │ │ ├── input.txt │ │ ├── unsup-align.lex-grammar │ │ └── weights └── tools │ ├── compare-statistics.pl │ ├── filter-stderr.pl │ └── flex-diff.pl ├── training ├── CMakeLists.txt ├── augment_grammar.cc ├── const_reorder │ ├── CMakeLists.txt │ ├── argument_reorder_model.cc │ ├── constituent_reorder_model.cc │ ├── trainer.cc │ └── trainer.h ├── crf │ ├── CMakeLists.txt │ ├── baum_welch_example │ │ ├── README.md │ │ ├── cdec.ini │ │ ├── random_init.pl │ │ ├── tagset.txt │ │ └── train.txt │ ├── cllh_observer.cc │ ├── cllh_observer.h │ ├── mpi_adagrad_optimize.cc │ ├── mpi_batch_optimize.cc │ ├── mpi_baum_welch.cc │ ├── mpi_compute_cllh.cc │ ├── mpi_extract_features.cc │ ├── mpi_extract_reachable.cc │ ├── mpi_flex_optimize.cc │ └── mpi_online_optimize.cc ├── dpmert │ ├── CMakeLists.txt │ ├── ces.cc │ ├── ces.h │ ├── divide_refs.py │ ├── dpmert.pl │ ├── error_surface.cc │ ├── error_surface.h │ ├── line_mediator.pl │ ├── line_optimizer.cc │ ├── line_optimizer.h │ ├── lo_test.cc │ ├── mert_geometry.cc │ ├── mert_geometry.h │ ├── mr_dpmert_generate_mapper_input.cc │ ├── mr_dpmert_map.cc │ ├── mr_dpmert_reduce.cc │ ├── test_aer │ │ ├── README │ │ ├── cdec.ini │ │ ├── corpus.src │ │ ├── grammar │ │ ├── ref.0 │ │ └── weights │ └── test_data │ │ ├── 0.bin.gz │ │ ├── 1.bin.gz │ │ ├── c2e.txt.0 │ │ ├── c2e.txt.1 │ │ ├── c2e.txt.2 │ │ ├── c2e.txt.3 │ │ ├── re.txt.0 │ │ ├── re.txt.1 │ │ ├── re.txt.2 │ │ ├── re.txt.3 │ │ ├── test-ch-inside.bin.gz │ │ └── test-zero-origin.bin.gz ├── dtrain │ ├── CMakeLists.txt │ ├── README.md │ ├── dtrain.cc │ ├── dtrain.h │ ├── examples │ │ ├── parallelized │ │ │ ├── README │ │ │ ├── cdec.ini │ │ │ ├── dtrain.ini │ │ │ ├── grammar │ │ │ │ ├── grammar.out.0.gz │ │ │ │ ├── grammar.out.1.gz │ │ │ │ ├── grammar.out.2.gz │ │ │ │ ├── grammar.out.3.gz │ │ │ │ ├── grammar.out.4.gz │ │ │ │ ├── grammar.out.5.gz │ │ │ │ ├── grammar.out.6.gz │ │ │ │ ├── grammar.out.7.gz │ │ │ │ ├── grammar.out.8.gz │ │ │ │ └── grammar.out.9.gz │ │ │ ├── in │ │ │ ├── refs │ │ │ └── work │ │ │ │ ├── out.0.0 │ │ │ │ ├── out.0.1 │ │ │ │ ├── out.1.0 │ │ │ │ ├── out.1.1 │ │ │ │ ├── shard.0.0.in │ │ │ │ ├── shard.0.0.refs │ │ │ │ ├── shard.1.0.in │ │ │ │ ├── shard.1.0.refs │ │ │ │ ├── weights.0 │ │ │ │ ├── weights.0.0 │ │ │ │ ├── weights.0.1 │ │ │ │ ├── weights.1 │ │ │ │ ├── weights.1.0 │ │ │ │ └── weights.1.1 │ │ ├── standard │ │ │ ├── README │ │ │ ├── cdec.ini │ │ │ ├── dtrain.ini │ │ │ ├── expected-output │ │ │ ├── nc-wmt11.de.gz │ │ │ ├── nc-wmt11.en.gz │ │ │ ├── nc-wmt11.en.srilm.gz │ │ │ ├── nc-wmt11.grammar.gz │ │ │ └── nc-wmt11.gz │ │ └── toy │ │ │ ├── cdec.ini │ │ │ ├── dtrain.ini │ │ │ ├── expected-output │ │ │ ├── grammar.gz │ │ │ ├── src │ │ │ └── tgt │ ├── kbestget.h │ ├── ksampler.h │ ├── lplp.rb │ ├── pairsampling.h │ ├── parallelize.rb │ ├── score.cc │ └── score.h ├── latent_svm │ ├── CMakeLists.txt │ └── latent_svm.cc ├── liblbfgs │ ├── CMakeLists.txt │ ├── arithmetic_ansi.h │ ├── arithmetic_sse_double.h │ ├── arithmetic_sse_float.h │ ├── lbfgs++.h │ ├── lbfgs.c │ ├── lbfgs.h │ └── ll_test.cc ├── minrisk │ ├── CMakeLists.txt │ ├── minrisk.pl │ ├── minrisk_generate_input.pl │ └── minrisk_optimize.cc ├── mira │ ├── CMakeLists.txt │ ├── ada_opt_sm.cc │ ├── kbest_cut_mira.cc │ ├── kbest_mira.cc │ └── mira.py ├── plftools.cc ├── pro │ ├── CMakeLists.txt │ ├── mr_pro_generate_mapper_input.pl │ ├── mr_pro_map.cc │ ├── mr_pro_reduce.cc │ └── pro.pl ├── rampion │ ├── CMakeLists.txt │ ├── rampion.pl │ ├── rampion_cccp.cc │ └── rampion_generate_input.pl ├── test_ngram.cc └── utils │ ├── CMakeLists.txt │ ├── candidate_set.cc │ ├── candidate_set.h │ ├── decode-and-evaluate.pl │ ├── entropy.cc │ ├── entropy.h │ ├── grammar_convert.cc │ ├── lbfgs.h │ ├── lbfgs_test.cc │ ├── libcall.pl │ ├── online_optimizer.cc │ ├── online_optimizer.h │ ├── optimize.cc │ ├── optimize.h │ ├── optimize_test.cc │ ├── parallelize.pl │ ├── risk.cc │ ├── risk.h │ ├── sentclient.cc │ ├── sentserver.cc │ └── sentserver.h ├── utils ├── CMakeLists.txt ├── alias_sampler.h ├── alignment_io.cc ├── alignment_io.h ├── array2d.h ├── atools.cc ├── b64featvector.cc ├── b64featvector.h ├── b64tools.cc ├── b64tools.h ├── batched_append.h ├── city.cc ├── city.h ├── citycrc.h ├── corpus_tools.cc ├── corpus_tools.h ├── dedup_corpus.cc ├── dict.cc ├── dict.h ├── dict_test.cc ├── exp_semiring.h ├── fast_lexical_cast.hpp ├── fast_sparse_vector.h ├── fdict.cc ├── fdict.h ├── feature_vector.h ├── filelib.cc ├── filelib.h ├── gzstream.cc ├── gzstream.h ├── hash.h ├── have_64_bits.h ├── indices_after.h ├── intrusive_refcount.hpp ├── kernel_string_subseq.h ├── logval.h ├── logval_test.cc ├── m.h ├── m_test.cc ├── maxent.cpp ├── maxent.h ├── murmur_hash3.cc ├── murmur_hash3.h ├── named_enum.h ├── null_deleter.h ├── null_traits.h ├── prob.h ├── reconstruct_weights.cc ├── sampler.h ├── semiring.h ├── show.h ├── small_vector.h ├── small_vector_test.cc ├── sparse_vector.cc ├── sparse_vector.h ├── star.h ├── static_utoa.h ├── string_piece.cc ├── string_piece.hh ├── stringlib.cc ├── stringlib.h ├── stringlib_test.cc ├── sv_test.cc ├── tdict.cc ├── tdict.h ├── test_data │ └── weights ├── timing_stats.cc ├── timing_stats.h ├── ts.cc ├── utoa.h ├── value_array.h ├── verbose.cc ├── verbose.h ├── warning_compiler.h ├── warning_pop.h ├── warning_push.h ├── weights.cc ├── weights.h ├── weights_test.cc ├── wordid.h └── writer.h └── word-aligner ├── CMakeLists.txt ├── aligner.pl ├── binderiv.cc ├── da.h ├── fast_align.cc ├── force_align.py ├── makefiles ├── makefile.grammars └── makefile.model.f-e ├── ortho-norm ├── README ├── ar.pl ├── cz.pl ├── en.pl ├── fr.pl ├── mg.pl ├── ru.pl ├── rw.pl ├── ur.pl └── zh.pl ├── stemmers ├── ar.pl ├── en.pl ├── fr.pl ├── mg.pl ├── rw.pl ├── ur.pl └── zh.pl ├── support ├── classify.pl ├── extract_grammar.pl ├── extract_vocab.pl ├── extract_weights.pl ├── generate_per_sentence_grammars.pl ├── generate_word_pair_features.pl ├── invert_grammar.pl ├── make_lex_grammar.pl ├── merge_corpus.pl └── supplement_weights_file.pl ├── ttables.cc └── ttables.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILDING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/BUILDING -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/README.cmake -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/README.md -------------------------------------------------------------------------------- /THREADS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/THREADS.txt -------------------------------------------------------------------------------- /cmake/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/cmake/FindEigen3.cmake -------------------------------------------------------------------------------- /cmake/FindGMock.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/cmake/FindGMock.cmake -------------------------------------------------------------------------------- /cmake/FindLibDL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/cmake/FindLibDL.cmake -------------------------------------------------------------------------------- /cmake/FindRT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/cmake/FindRT.cmake -------------------------------------------------------------------------------- /compound-split/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/compound-split/README.md -------------------------------------------------------------------------------- /compound-split/cdec-de.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/compound-split/cdec-de.ini -------------------------------------------------------------------------------- /compound-split/compound-split.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/compound-split/compound-split.pl -------------------------------------------------------------------------------- /compound-split/de/TRAIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/compound-split/de/TRAIN -------------------------------------------------------------------------------- /compound-split/de/badlist.de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/compound-split/de/badlist.de -------------------------------------------------------------------------------- /compound-split/de/cdec-train.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/compound-split/de/cdec-train.ini -------------------------------------------------------------------------------- /compound-split/de/dev.nouns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/compound-split/de/dev.nouns -------------------------------------------------------------------------------- /compound-split/de/train.in-ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/compound-split/de/train.in-ref -------------------------------------------------------------------------------- /compound-split/de/weights.ptinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/compound-split/de/weights.ptinit -------------------------------------------------------------------------------- /compound-split/de/weights.trained: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/compound-split/de/weights.trained -------------------------------------------------------------------------------- /compound-split/de/wordlist.de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/compound-split/de/wordlist.de -------------------------------------------------------------------------------- /compound-split/examples.de/infile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/compound-split/examples.de/infile.txt -------------------------------------------------------------------------------- /compound-split/examples.de/out.plf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/compound-split/examples.de/out.plf -------------------------------------------------------------------------------- /compound-split/examples.de/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/compound-split/examples.de/out.txt -------------------------------------------------------------------------------- /compound-split/install-data-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/compound-split/install-data-deps.sh -------------------------------------------------------------------------------- /compound-split/lattice-stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/compound-split/lattice-stats.py -------------------------------------------------------------------------------- /compound-split/make-dict.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/compound-split/make-dict.pl -------------------------------------------------------------------------------- /config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/config.h.cmake -------------------------------------------------------------------------------- /corpus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/README.md -------------------------------------------------------------------------------- /corpus/add-self-translations.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/add-self-translations.pl -------------------------------------------------------------------------------- /corpus/add-sos-eos.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/add-sos-eos.pl -------------------------------------------------------------------------------- /corpus/conll2cdec.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/conll2cdec.pl -------------------------------------------------------------------------------- /corpus/corpus-stats.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/corpus-stats.pl -------------------------------------------------------------------------------- /corpus/cut-corpus.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/cut-corpus.pl -------------------------------------------------------------------------------- /corpus/filter-length.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/filter-length.pl -------------------------------------------------------------------------------- /corpus/lowercase.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/lowercase.pl -------------------------------------------------------------------------------- /corpus/moses-scfg-to-cdec.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/moses-scfg-to-cdec.pl -------------------------------------------------------------------------------- /corpus/moses-xml.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/moses-xml.pl -------------------------------------------------------------------------------- /corpus/paste-files.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/paste-files.pl -------------------------------------------------------------------------------- /corpus/sample-dev-sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/sample-dev-sets.py -------------------------------------------------------------------------------- /corpus/support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/support/README -------------------------------------------------------------------------------- /corpus/support/fix-contract.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/support/fix-contract.pl -------------------------------------------------------------------------------- /corpus/support/fix-eos.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/support/fix-eos.pl -------------------------------------------------------------------------------- /corpus/support/quote-norm.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/support/quote-norm.pl -------------------------------------------------------------------------------- /corpus/support/token_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/support/token_list -------------------------------------------------------------------------------- /corpus/support/token_patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/support/token_patterns -------------------------------------------------------------------------------- /corpus/support/tokenizer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/support/tokenizer.pl -------------------------------------------------------------------------------- /corpus/support/utf8-normalize-batch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/support/utf8-normalize-batch.pl -------------------------------------------------------------------------------- /corpus/support/utf8-normalize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/support/utf8-normalize.sh -------------------------------------------------------------------------------- /corpus/tokenize-anything.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/tokenize-anything.sh -------------------------------------------------------------------------------- /corpus/tokenize-parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/tokenize-parallel.py -------------------------------------------------------------------------------- /corpus/untok.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/untok.pl -------------------------------------------------------------------------------- /corpus/utf8-normalize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/utf8-normalize.sh -------------------------------------------------------------------------------- /corpus/xml-tok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/corpus/xml-tok.py -------------------------------------------------------------------------------- /decoder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/CMakeLists.txt -------------------------------------------------------------------------------- /decoder/aligner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/aligner.cc -------------------------------------------------------------------------------- /decoder/aligner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/aligner.h -------------------------------------------------------------------------------- /decoder/apply_models.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/apply_models.cc -------------------------------------------------------------------------------- /decoder/apply_models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/apply_models.h -------------------------------------------------------------------------------- /decoder/bottom_up_parser-rs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/bottom_up_parser-rs.cc -------------------------------------------------------------------------------- /decoder/bottom_up_parser-rs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/bottom_up_parser-rs.h -------------------------------------------------------------------------------- /decoder/bottom_up_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/bottom_up_parser.cc -------------------------------------------------------------------------------- /decoder/bottom_up_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/bottom_up_parser.h -------------------------------------------------------------------------------- /decoder/cdec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/cdec.cc -------------------------------------------------------------------------------- /decoder/cdec_ff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/cdec_ff.cc -------------------------------------------------------------------------------- /decoder/csplit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/csplit.cc -------------------------------------------------------------------------------- /decoder/csplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/csplit.h -------------------------------------------------------------------------------- /decoder/decoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/decoder.cc -------------------------------------------------------------------------------- /decoder/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/decoder.h -------------------------------------------------------------------------------- /decoder/earley_composer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/earley_composer.cc -------------------------------------------------------------------------------- /decoder/earley_composer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/earley_composer.h -------------------------------------------------------------------------------- /decoder/factored_lexicon_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/factored_lexicon_helper.cc -------------------------------------------------------------------------------- /decoder/factored_lexicon_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/factored_lexicon_helper.h -------------------------------------------------------------------------------- /decoder/ff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff.cc -------------------------------------------------------------------------------- /decoder/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff.h -------------------------------------------------------------------------------- /decoder/ff_basic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_basic.cc -------------------------------------------------------------------------------- /decoder/ff_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_basic.h -------------------------------------------------------------------------------- /decoder/ff_bleu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_bleu.cc -------------------------------------------------------------------------------- /decoder/ff_bleu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_bleu.h -------------------------------------------------------------------------------- /decoder/ff_charset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_charset.cc -------------------------------------------------------------------------------- /decoder/ff_charset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_charset.h -------------------------------------------------------------------------------- /decoder/ff_conll.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_conll.cc -------------------------------------------------------------------------------- /decoder/ff_conll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_conll.h -------------------------------------------------------------------------------- /decoder/ff_const_reorder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_const_reorder.cc -------------------------------------------------------------------------------- /decoder/ff_const_reorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_const_reorder.h -------------------------------------------------------------------------------- /decoder/ff_const_reorder_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_const_reorder_common.h -------------------------------------------------------------------------------- /decoder/ff_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_context.cc -------------------------------------------------------------------------------- /decoder/ff_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_context.h -------------------------------------------------------------------------------- /decoder/ff_csplit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_csplit.cc -------------------------------------------------------------------------------- /decoder/ff_csplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_csplit.h -------------------------------------------------------------------------------- /decoder/ff_external.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_external.cc -------------------------------------------------------------------------------- /decoder/ff_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_external.h -------------------------------------------------------------------------------- /decoder/ff_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_factory.cc -------------------------------------------------------------------------------- /decoder/ff_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_factory.h -------------------------------------------------------------------------------- /decoder/ff_klm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_klm.cc -------------------------------------------------------------------------------- /decoder/ff_klm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_klm.h -------------------------------------------------------------------------------- /decoder/ff_lexical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_lexical.h -------------------------------------------------------------------------------- /decoder/ff_lm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_lm.cc -------------------------------------------------------------------------------- /decoder/ff_lm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_lm.h -------------------------------------------------------------------------------- /decoder/ff_ngrams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_ngrams.cc -------------------------------------------------------------------------------- /decoder/ff_ngrams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_ngrams.h -------------------------------------------------------------------------------- /decoder/ff_parse_match.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_parse_match.cc -------------------------------------------------------------------------------- /decoder/ff_parse_match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_parse_match.h -------------------------------------------------------------------------------- /decoder/ff_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_register.h -------------------------------------------------------------------------------- /decoder/ff_rules.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_rules.cc -------------------------------------------------------------------------------- /decoder/ff_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_rules.h -------------------------------------------------------------------------------- /decoder/ff_ruleshape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_ruleshape.cc -------------------------------------------------------------------------------- /decoder/ff_ruleshape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_ruleshape.h -------------------------------------------------------------------------------- /decoder/ff_sample_fsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_sample_fsa.h -------------------------------------------------------------------------------- /decoder/ff_soft_syn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_soft_syn.cc -------------------------------------------------------------------------------- /decoder/ff_soft_syn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_soft_syn.h -------------------------------------------------------------------------------- /decoder/ff_soft_syntax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_soft_syntax.cc -------------------------------------------------------------------------------- /decoder/ff_soft_syntax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_soft_syntax.h -------------------------------------------------------------------------------- /decoder/ff_soft_syntax_mindist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_soft_syntax_mindist.cc -------------------------------------------------------------------------------- /decoder/ff_soft_syntax_mindist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_soft_syntax_mindist.h -------------------------------------------------------------------------------- /decoder/ff_source_path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_source_path.cc -------------------------------------------------------------------------------- /decoder/ff_source_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_source_path.h -------------------------------------------------------------------------------- /decoder/ff_source_syntax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_source_syntax.cc -------------------------------------------------------------------------------- /decoder/ff_source_syntax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_source_syntax.h -------------------------------------------------------------------------------- /decoder/ff_source_syntax2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_source_syntax2.cc -------------------------------------------------------------------------------- /decoder/ff_source_syntax2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_source_syntax2.h -------------------------------------------------------------------------------- /decoder/ff_spans.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_spans.cc -------------------------------------------------------------------------------- /decoder/ff_spans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_spans.h -------------------------------------------------------------------------------- /decoder/ff_tagger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_tagger.cc -------------------------------------------------------------------------------- /decoder/ff_tagger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_tagger.h -------------------------------------------------------------------------------- /decoder/ff_wordalign.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_wordalign.cc -------------------------------------------------------------------------------- /decoder/ff_wordalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_wordalign.h -------------------------------------------------------------------------------- /decoder/ff_wordset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_wordset.cc -------------------------------------------------------------------------------- /decoder/ff_wordset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ff_wordset.h -------------------------------------------------------------------------------- /decoder/ffset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ffset.cc -------------------------------------------------------------------------------- /decoder/ffset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/ffset.h -------------------------------------------------------------------------------- /decoder/forest_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/forest_writer.cc -------------------------------------------------------------------------------- /decoder/forest_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/forest_writer.h -------------------------------------------------------------------------------- /decoder/freqdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/freqdict.h -------------------------------------------------------------------------------- /decoder/fst_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/fst_translator.cc -------------------------------------------------------------------------------- /decoder/grammar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/grammar.cc -------------------------------------------------------------------------------- /decoder/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/grammar.h -------------------------------------------------------------------------------- /decoder/grammar_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/grammar_test.cc -------------------------------------------------------------------------------- /decoder/hg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/hg.cc -------------------------------------------------------------------------------- /decoder/hg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/hg.h -------------------------------------------------------------------------------- /decoder/hg_intersect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/hg_intersect.cc -------------------------------------------------------------------------------- /decoder/hg_intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/hg_intersect.h -------------------------------------------------------------------------------- /decoder/hg_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/hg_io.cc -------------------------------------------------------------------------------- /decoder/hg_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/hg_io.h -------------------------------------------------------------------------------- /decoder/hg_remove_eps.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/hg_remove_eps.cc -------------------------------------------------------------------------------- /decoder/hg_remove_eps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/hg_remove_eps.h -------------------------------------------------------------------------------- /decoder/hg_sampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/hg_sampler.cc -------------------------------------------------------------------------------- /decoder/hg_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/hg_sampler.h -------------------------------------------------------------------------------- /decoder/hg_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/hg_test.cc -------------------------------------------------------------------------------- /decoder/hg_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/hg_test.h -------------------------------------------------------------------------------- /decoder/hg_union.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/hg_union.cc -------------------------------------------------------------------------------- /decoder/hg_union.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/hg_union.h -------------------------------------------------------------------------------- /decoder/incremental.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/incremental.cc -------------------------------------------------------------------------------- /decoder/incremental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/incremental.h -------------------------------------------------------------------------------- /decoder/inside_outside.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/inside_outside.h -------------------------------------------------------------------------------- /decoder/kbest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/kbest.h -------------------------------------------------------------------------------- /decoder/lattice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/lattice.cc -------------------------------------------------------------------------------- /decoder/lattice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/lattice.h -------------------------------------------------------------------------------- /decoder/lexalign.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/lexalign.cc -------------------------------------------------------------------------------- /decoder/lexalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/lexalign.h -------------------------------------------------------------------------------- /decoder/lextrans.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/lextrans.cc -------------------------------------------------------------------------------- /decoder/lextrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/lextrans.h -------------------------------------------------------------------------------- /decoder/maxtrans_blunsom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/maxtrans_blunsom.cc -------------------------------------------------------------------------------- /decoder/node_state_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/node_state_hash.h -------------------------------------------------------------------------------- /decoder/nt_span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/nt_span.h -------------------------------------------------------------------------------- /decoder/oracle_bleu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/oracle_bleu.h -------------------------------------------------------------------------------- /decoder/parser_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/parser_test.cc -------------------------------------------------------------------------------- /decoder/phrasebased_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/phrasebased_translator.cc -------------------------------------------------------------------------------- /decoder/phrasebased_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/phrasebased_translator.h -------------------------------------------------------------------------------- /decoder/phrasetable_fst.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/phrasetable_fst.cc -------------------------------------------------------------------------------- /decoder/phrasetable_fst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/phrasetable_fst.h -------------------------------------------------------------------------------- /decoder/program_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/program_options.h -------------------------------------------------------------------------------- /decoder/rescore_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/rescore_translator.cc -------------------------------------------------------------------------------- /decoder/rule_lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/rule_lexer.h -------------------------------------------------------------------------------- /decoder/rule_lexer.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/rule_lexer.ll -------------------------------------------------------------------------------- /decoder/scfg_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/scfg_translator.cc -------------------------------------------------------------------------------- /decoder/sentence_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/sentence_metadata.h -------------------------------------------------------------------------------- /decoder/sentences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/sentences.h -------------------------------------------------------------------------------- /decoder/t2s_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/t2s_test.cc -------------------------------------------------------------------------------- /decoder/tagger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/tagger.cc -------------------------------------------------------------------------------- /decoder/tagger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/tagger.h -------------------------------------------------------------------------------- /decoder/test_data/dummy.3gram.lm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/test_data/dummy.3gram.lm -------------------------------------------------------------------------------- /decoder/test_data/grammar.prune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/test_data/grammar.prune -------------------------------------------------------------------------------- /decoder/test_data/hg_test.hg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/test_data/hg_test.hg -------------------------------------------------------------------------------- /decoder/test_data/hg_test.hg.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/test_data/hg_test.hg.bin.gz -------------------------------------------------------------------------------- /decoder/test_data/hg_test.hg_balanced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/test_data/hg_test.hg_balanced -------------------------------------------------------------------------------- /decoder/test_data/hg_test.hg_int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/test_data/hg_test.hg_int -------------------------------------------------------------------------------- /decoder/test_data/hg_test.hg_int.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/test_data/hg_test.hg_int.bin.gz -------------------------------------------------------------------------------- /decoder/test_data/hg_test.lattice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/test_data/hg_test.lattice -------------------------------------------------------------------------------- /decoder/test_data/hg_test.lattice.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/test_data/hg_test.lattice.bin.gz -------------------------------------------------------------------------------- /decoder/test_data/hg_test.tiny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/test_data/hg_test.tiny -------------------------------------------------------------------------------- /decoder/test_data/hg_test.tiny.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/test_data/hg_test.tiny.bin.gz -------------------------------------------------------------------------------- /decoder/test_data/hg_test.tiny_lattice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/test_data/hg_test.tiny_lattice -------------------------------------------------------------------------------- /decoder/test_data/small.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/test_data/small.bin.gz -------------------------------------------------------------------------------- /decoder/test_data/test_2gram.lm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/test_data/test_2gram.lm.gz -------------------------------------------------------------------------------- /decoder/test_data/weights.gt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/test_data/weights.gt -------------------------------------------------------------------------------- /decoder/translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/translator.cc -------------------------------------------------------------------------------- /decoder/translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/translator.h -------------------------------------------------------------------------------- /decoder/tree2string_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/tree2string_translator.cc -------------------------------------------------------------------------------- /decoder/tree_fragment.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/tree_fragment.cc -------------------------------------------------------------------------------- /decoder/tree_fragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/tree_fragment.h -------------------------------------------------------------------------------- /decoder/trule.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/trule.cc -------------------------------------------------------------------------------- /decoder/trule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/trule.h -------------------------------------------------------------------------------- /decoder/trule_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/trule_test.cc -------------------------------------------------------------------------------- /decoder/viterbi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/viterbi.cc -------------------------------------------------------------------------------- /decoder/viterbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/decoder/viterbi.h -------------------------------------------------------------------------------- /environment/LocalConfig.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/environment/LocalConfig.pm -------------------------------------------------------------------------------- /example_extff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/example_extff/CMakeLists.txt -------------------------------------------------------------------------------- /example_extff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/example_extff/README.md -------------------------------------------------------------------------------- /example_extff/ff_example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/example_extff/ff_example.cc -------------------------------------------------------------------------------- /extractor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/CMakeLists.txt -------------------------------------------------------------------------------- /extractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/README.md -------------------------------------------------------------------------------- /extractor/alignment.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/alignment.cc -------------------------------------------------------------------------------- /extractor/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/alignment.h -------------------------------------------------------------------------------- /extractor/alignment_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/alignment_test.cc -------------------------------------------------------------------------------- /extractor/backoff_sampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/backoff_sampler.cc -------------------------------------------------------------------------------- /extractor/backoff_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/backoff_sampler.h -------------------------------------------------------------------------------- /extractor/data_array.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/data_array.cc -------------------------------------------------------------------------------- /extractor/data_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/data_array.h -------------------------------------------------------------------------------- /extractor/data_array_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/data_array_test.cc -------------------------------------------------------------------------------- /extractor/extract.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/extract.cc -------------------------------------------------------------------------------- /extractor/fast_intersector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/fast_intersector.cc -------------------------------------------------------------------------------- /extractor/fast_intersector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/fast_intersector.h -------------------------------------------------------------------------------- /extractor/fast_intersector_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/fast_intersector_test.cc -------------------------------------------------------------------------------- /extractor/features/count_source_target.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/features/count_source_target.cc -------------------------------------------------------------------------------- /extractor/features/count_source_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/features/count_source_target.h -------------------------------------------------------------------------------- /extractor/features/feature.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/features/feature.cc -------------------------------------------------------------------------------- /extractor/features/feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/features/feature.h -------------------------------------------------------------------------------- /extractor/features/is_source_singleton.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/features/is_source_singleton.cc -------------------------------------------------------------------------------- /extractor/features/is_source_singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/features/is_source_singleton.h -------------------------------------------------------------------------------- /extractor/features/sample_source_count.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/features/sample_source_count.cc -------------------------------------------------------------------------------- /extractor/features/sample_source_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/features/sample_source_count.h -------------------------------------------------------------------------------- /extractor/grammar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/grammar.cc -------------------------------------------------------------------------------- /extractor/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/grammar.h -------------------------------------------------------------------------------- /extractor/grammar_extractor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/grammar_extractor.cc -------------------------------------------------------------------------------- /extractor/grammar_extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/grammar_extractor.h -------------------------------------------------------------------------------- /extractor/grammar_extractor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/grammar_extractor_test.cc -------------------------------------------------------------------------------- /extractor/matchings_finder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/matchings_finder.cc -------------------------------------------------------------------------------- /extractor/matchings_finder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/matchings_finder.h -------------------------------------------------------------------------------- /extractor/matchings_finder_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/matchings_finder_test.cc -------------------------------------------------------------------------------- /extractor/matchings_sampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/matchings_sampler.cc -------------------------------------------------------------------------------- /extractor/matchings_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/matchings_sampler.h -------------------------------------------------------------------------------- /extractor/matchings_sampler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/matchings_sampler_test.cc -------------------------------------------------------------------------------- /extractor/matchings_trie.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/matchings_trie.cc -------------------------------------------------------------------------------- /extractor/matchings_trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/matchings_trie.h -------------------------------------------------------------------------------- /extractor/mocks/mock_alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/mocks/mock_alignment.h -------------------------------------------------------------------------------- /extractor/mocks/mock_data_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/mocks/mock_data_array.h -------------------------------------------------------------------------------- /extractor/mocks/mock_fast_intersector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/mocks/mock_fast_intersector.h -------------------------------------------------------------------------------- /extractor/mocks/mock_feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/mocks/mock_feature.h -------------------------------------------------------------------------------- /extractor/mocks/mock_matchings_finder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/mocks/mock_matchings_finder.h -------------------------------------------------------------------------------- /extractor/mocks/mock_matchings_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/mocks/mock_matchings_sampler.h -------------------------------------------------------------------------------- /extractor/mocks/mock_precomputation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/mocks/mock_precomputation.h -------------------------------------------------------------------------------- /extractor/mocks/mock_rule_extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/mocks/mock_rule_extractor.h -------------------------------------------------------------------------------- /extractor/mocks/mock_rule_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/mocks/mock_rule_factory.h -------------------------------------------------------------------------------- /extractor/mocks/mock_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/mocks/mock_sampler.h -------------------------------------------------------------------------------- /extractor/mocks/mock_scorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/mocks/mock_scorer.h -------------------------------------------------------------------------------- /extractor/mocks/mock_suffix_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/mocks/mock_suffix_array.h -------------------------------------------------------------------------------- /extractor/mocks/mock_translation_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/mocks/mock_translation_table.h -------------------------------------------------------------------------------- /extractor/mocks/mock_vocabulary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/mocks/mock_vocabulary.h -------------------------------------------------------------------------------- /extractor/phrase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/phrase.cc -------------------------------------------------------------------------------- /extractor/phrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/phrase.h -------------------------------------------------------------------------------- /extractor/phrase_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/phrase_builder.cc -------------------------------------------------------------------------------- /extractor/phrase_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/phrase_builder.h -------------------------------------------------------------------------------- /extractor/phrase_location.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/phrase_location.cc -------------------------------------------------------------------------------- /extractor/phrase_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/phrase_location.h -------------------------------------------------------------------------------- /extractor/phrase_location_sampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/phrase_location_sampler.cc -------------------------------------------------------------------------------- /extractor/phrase_location_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/phrase_location_sampler.h -------------------------------------------------------------------------------- /extractor/phrase_location_sampler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/phrase_location_sampler_test.cc -------------------------------------------------------------------------------- /extractor/phrase_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/phrase_test.cc -------------------------------------------------------------------------------- /extractor/precomputation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/precomputation.cc -------------------------------------------------------------------------------- /extractor/precomputation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/precomputation.h -------------------------------------------------------------------------------- /extractor/precomputation_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/precomputation_test.cc -------------------------------------------------------------------------------- /extractor/rule.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/rule.cc -------------------------------------------------------------------------------- /extractor/rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/rule.h -------------------------------------------------------------------------------- /extractor/rule_extractor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/rule_extractor.cc -------------------------------------------------------------------------------- /extractor/rule_extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/rule_extractor.h -------------------------------------------------------------------------------- /extractor/rule_extractor_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/rule_extractor_helper.cc -------------------------------------------------------------------------------- /extractor/rule_extractor_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/rule_extractor_helper.h -------------------------------------------------------------------------------- /extractor/rule_extractor_helper_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/rule_extractor_helper_test.cc -------------------------------------------------------------------------------- /extractor/rule_extractor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/rule_extractor_test.cc -------------------------------------------------------------------------------- /extractor/rule_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/rule_factory.cc -------------------------------------------------------------------------------- /extractor/rule_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/rule_factory.h -------------------------------------------------------------------------------- /extractor/rule_factory_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/rule_factory_test.cc -------------------------------------------------------------------------------- /extractor/run_extractor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/run_extractor.cc -------------------------------------------------------------------------------- /extractor/sacompile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/sacompile.cc -------------------------------------------------------------------------------- /extractor/sample_alignment.txt: -------------------------------------------------------------------------------- 1 | 0-0 1-1 2-2 2 | 1-0 2-1 3 | -------------------------------------------------------------------------------- /extractor/sample_bitext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/sample_bitext.txt -------------------------------------------------------------------------------- /extractor/sample_source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/sample_source.txt -------------------------------------------------------------------------------- /extractor/sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/sampler.h -------------------------------------------------------------------------------- /extractor/scorer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/scorer.cc -------------------------------------------------------------------------------- /extractor/scorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/scorer.h -------------------------------------------------------------------------------- /extractor/scorer2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/scorer2_test.cc -------------------------------------------------------------------------------- /extractor/suffix_array.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/suffix_array.cc -------------------------------------------------------------------------------- /extractor/suffix_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/suffix_array.h -------------------------------------------------------------------------------- /extractor/suffix_array_sampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/suffix_array_sampler.cc -------------------------------------------------------------------------------- /extractor/suffix_array_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/suffix_array_sampler.h -------------------------------------------------------------------------------- /extractor/suffix_array_sampler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/suffix_array_sampler_test.cc -------------------------------------------------------------------------------- /extractor/suffix_array_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/suffix_array_test.cc -------------------------------------------------------------------------------- /extractor/target_phrase_extractor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/target_phrase_extractor.cc -------------------------------------------------------------------------------- /extractor/target_phrase_extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/target_phrase_extractor.h -------------------------------------------------------------------------------- /extractor/time_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/time_util.cc -------------------------------------------------------------------------------- /extractor/time_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/time_util.h -------------------------------------------------------------------------------- /extractor/translation_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/translation_table.cc -------------------------------------------------------------------------------- /extractor/translation_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/translation_table.h -------------------------------------------------------------------------------- /extractor/translation_table_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/translation_table_test.cc -------------------------------------------------------------------------------- /extractor/vocabulary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/vocabulary.cc -------------------------------------------------------------------------------- /extractor/vocabulary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/vocabulary.h -------------------------------------------------------------------------------- /extractor/vocabulary_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/extractor/vocabulary_test.cc -------------------------------------------------------------------------------- /klm/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/COPYING -------------------------------------------------------------------------------- /klm/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/COPYING.LESSER -------------------------------------------------------------------------------- /klm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/LICENSE -------------------------------------------------------------------------------- /klm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/README.md -------------------------------------------------------------------------------- /klm/lm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/CMakeLists.txt -------------------------------------------------------------------------------- /klm/lm/bhiksha.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/bhiksha.cc -------------------------------------------------------------------------------- /klm/lm/bhiksha.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/bhiksha.hh -------------------------------------------------------------------------------- /klm/lm/binary_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/binary_format.cc -------------------------------------------------------------------------------- /klm/lm/binary_format.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/binary_format.hh -------------------------------------------------------------------------------- /klm/lm/blank.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/blank.hh -------------------------------------------------------------------------------- /klm/lm/build_binary_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/build_binary_main.cc -------------------------------------------------------------------------------- /klm/lm/builder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/CMakeLists.txt -------------------------------------------------------------------------------- /klm/lm/builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/README.md -------------------------------------------------------------------------------- /klm/lm/builder/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/TODO -------------------------------------------------------------------------------- /klm/lm/builder/adjust_counts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/adjust_counts.cc -------------------------------------------------------------------------------- /klm/lm/builder/adjust_counts.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/adjust_counts.hh -------------------------------------------------------------------------------- /klm/lm/builder/adjust_counts_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/adjust_counts_test.cc -------------------------------------------------------------------------------- /klm/lm/builder/corpus_count.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/corpus_count.cc -------------------------------------------------------------------------------- /klm/lm/builder/corpus_count.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/corpus_count.hh -------------------------------------------------------------------------------- /klm/lm/builder/corpus_count_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/corpus_count_test.cc -------------------------------------------------------------------------------- /klm/lm/builder/discount.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/discount.hh -------------------------------------------------------------------------------- /klm/lm/builder/dump_counts_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/dump_counts_main.cc -------------------------------------------------------------------------------- /klm/lm/builder/hash_gamma.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/hash_gamma.hh -------------------------------------------------------------------------------- /klm/lm/builder/header_info.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/header_info.hh -------------------------------------------------------------------------------- /klm/lm/builder/initial_probabilities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/initial_probabilities.cc -------------------------------------------------------------------------------- /klm/lm/builder/initial_probabilities.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/initial_probabilities.hh -------------------------------------------------------------------------------- /klm/lm/builder/interpolate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/interpolate.cc -------------------------------------------------------------------------------- /klm/lm/builder/interpolate.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/interpolate.hh -------------------------------------------------------------------------------- /klm/lm/builder/joint_order.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/joint_order.hh -------------------------------------------------------------------------------- /klm/lm/builder/lmplz_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/lmplz_main.cc -------------------------------------------------------------------------------- /klm/lm/builder/multi_stream.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/multi_stream.hh -------------------------------------------------------------------------------- /klm/lm/builder/ngram.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/ngram.hh -------------------------------------------------------------------------------- /klm/lm/builder/ngram_stream.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/ngram_stream.hh -------------------------------------------------------------------------------- /klm/lm/builder/pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/pipeline.cc -------------------------------------------------------------------------------- /klm/lm/builder/pipeline.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/pipeline.hh -------------------------------------------------------------------------------- /klm/lm/builder/print.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/print.cc -------------------------------------------------------------------------------- /klm/lm/builder/print.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/print.hh -------------------------------------------------------------------------------- /klm/lm/builder/sort.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/builder/sort.hh -------------------------------------------------------------------------------- /klm/lm/config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/config.cc -------------------------------------------------------------------------------- /klm/lm/config.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/config.hh -------------------------------------------------------------------------------- /klm/lm/enumerate_vocab.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/enumerate_vocab.hh -------------------------------------------------------------------------------- /klm/lm/facade.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/facade.hh -------------------------------------------------------------------------------- /klm/lm/filter/arpa_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/filter/arpa_io.cc -------------------------------------------------------------------------------- /klm/lm/filter/arpa_io.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/filter/arpa_io.hh -------------------------------------------------------------------------------- /klm/lm/filter/count_io.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/filter/count_io.hh -------------------------------------------------------------------------------- /klm/lm/filter/filter_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/filter/filter_main.cc -------------------------------------------------------------------------------- /klm/lm/filter/format.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/filter/format.hh -------------------------------------------------------------------------------- /klm/lm/filter/phrase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/filter/phrase.cc -------------------------------------------------------------------------------- /klm/lm/filter/phrase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/filter/phrase.hh -------------------------------------------------------------------------------- /klm/lm/filter/phrase_table_vocab_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/filter/phrase_table_vocab_main.cc -------------------------------------------------------------------------------- /klm/lm/filter/thread.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/filter/thread.hh -------------------------------------------------------------------------------- /klm/lm/filter/vocab.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/filter/vocab.cc -------------------------------------------------------------------------------- /klm/lm/filter/vocab.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/filter/vocab.hh -------------------------------------------------------------------------------- /klm/lm/filter/wrapper.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/filter/wrapper.hh -------------------------------------------------------------------------------- /klm/lm/fragment_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/fragment_main.cc -------------------------------------------------------------------------------- /klm/lm/interpolate/arpa_to_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/interpolate/arpa_to_stream.cc -------------------------------------------------------------------------------- /klm/lm/interpolate/arpa_to_stream.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/interpolate/arpa_to_stream.hh -------------------------------------------------------------------------------- /klm/lm/interpolate/example_sort_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/interpolate/example_sort_main.cc -------------------------------------------------------------------------------- /klm/lm/left.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/left.hh -------------------------------------------------------------------------------- /klm/lm/left_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/left_test.cc -------------------------------------------------------------------------------- /klm/lm/lm_exception.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/lm_exception.cc -------------------------------------------------------------------------------- /klm/lm/lm_exception.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/lm_exception.hh -------------------------------------------------------------------------------- /klm/lm/max_order.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/max_order.hh -------------------------------------------------------------------------------- /klm/lm/model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/model.cc -------------------------------------------------------------------------------- /klm/lm/model.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/model.hh -------------------------------------------------------------------------------- /klm/lm/model_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/model_test.cc -------------------------------------------------------------------------------- /klm/lm/model_type.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/model_type.hh -------------------------------------------------------------------------------- /klm/lm/neural/wordvecs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/neural/wordvecs.cc -------------------------------------------------------------------------------- /klm/lm/neural/wordvecs.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/neural/wordvecs.hh -------------------------------------------------------------------------------- /klm/lm/ngram_query.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/ngram_query.hh -------------------------------------------------------------------------------- /klm/lm/partial.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/partial.hh -------------------------------------------------------------------------------- /klm/lm/partial_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/partial_test.cc -------------------------------------------------------------------------------- /klm/lm/quantize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/quantize.cc -------------------------------------------------------------------------------- /klm/lm/quantize.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/quantize.hh -------------------------------------------------------------------------------- /klm/lm/query_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/query_main.cc -------------------------------------------------------------------------------- /klm/lm/read_arpa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/read_arpa.cc -------------------------------------------------------------------------------- /klm/lm/read_arpa.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/read_arpa.hh -------------------------------------------------------------------------------- /klm/lm/return.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/return.hh -------------------------------------------------------------------------------- /klm/lm/search_hashed.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/search_hashed.cc -------------------------------------------------------------------------------- /klm/lm/search_hashed.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/search_hashed.hh -------------------------------------------------------------------------------- /klm/lm/search_trie.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/search_trie.cc -------------------------------------------------------------------------------- /klm/lm/search_trie.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/search_trie.hh -------------------------------------------------------------------------------- /klm/lm/sizes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/sizes.cc -------------------------------------------------------------------------------- /klm/lm/sizes.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/sizes.hh -------------------------------------------------------------------------------- /klm/lm/state.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/state.hh -------------------------------------------------------------------------------- /klm/lm/test.arpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/test.arpa -------------------------------------------------------------------------------- /klm/lm/test_nounk.arpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/test_nounk.arpa -------------------------------------------------------------------------------- /klm/lm/trie.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/trie.cc -------------------------------------------------------------------------------- /klm/lm/trie.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/trie.hh -------------------------------------------------------------------------------- /klm/lm/trie_sort.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/trie_sort.cc -------------------------------------------------------------------------------- /klm/lm/trie_sort.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/trie_sort.hh -------------------------------------------------------------------------------- /klm/lm/value.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/value.hh -------------------------------------------------------------------------------- /klm/lm/value_build.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/value_build.cc -------------------------------------------------------------------------------- /klm/lm/value_build.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/value_build.hh -------------------------------------------------------------------------------- /klm/lm/virtual_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/virtual_interface.cc -------------------------------------------------------------------------------- /klm/lm/virtual_interface.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/virtual_interface.hh -------------------------------------------------------------------------------- /klm/lm/vocab.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/vocab.cc -------------------------------------------------------------------------------- /klm/lm/vocab.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/vocab.hh -------------------------------------------------------------------------------- /klm/lm/weights.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/weights.hh -------------------------------------------------------------------------------- /klm/lm/word_index.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/word_index.hh -------------------------------------------------------------------------------- /klm/lm/wrappers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/wrappers/README -------------------------------------------------------------------------------- /klm/lm/wrappers/nplm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/wrappers/nplm.cc -------------------------------------------------------------------------------- /klm/lm/wrappers/nplm.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/lm/wrappers/nplm.hh -------------------------------------------------------------------------------- /klm/search/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/CMakeLists.txt -------------------------------------------------------------------------------- /klm/search/applied.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/applied.hh -------------------------------------------------------------------------------- /klm/search/config.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/config.hh -------------------------------------------------------------------------------- /klm/search/context.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/context.hh -------------------------------------------------------------------------------- /klm/search/dedupe.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/dedupe.hh -------------------------------------------------------------------------------- /klm/search/edge.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/edge.hh -------------------------------------------------------------------------------- /klm/search/edge_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/edge_generator.cc -------------------------------------------------------------------------------- /klm/search/edge_generator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/edge_generator.hh -------------------------------------------------------------------------------- /klm/search/header.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/header.hh -------------------------------------------------------------------------------- /klm/search/nbest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/nbest.cc -------------------------------------------------------------------------------- /klm/search/nbest.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/nbest.hh -------------------------------------------------------------------------------- /klm/search/rule.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/rule.cc -------------------------------------------------------------------------------- /klm/search/rule.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/rule.hh -------------------------------------------------------------------------------- /klm/search/types.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/types.hh -------------------------------------------------------------------------------- /klm/search/vertex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/vertex.cc -------------------------------------------------------------------------------- /klm/search/vertex.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/vertex.hh -------------------------------------------------------------------------------- /klm/search/vertex_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/vertex_generator.cc -------------------------------------------------------------------------------- /klm/search/vertex_generator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/search/vertex_generator.hh -------------------------------------------------------------------------------- /klm/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/CMakeLists.txt -------------------------------------------------------------------------------- /klm/util/bit_packing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/bit_packing.cc -------------------------------------------------------------------------------- /klm/util/bit_packing.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/bit_packing.hh -------------------------------------------------------------------------------- /klm/util/bit_packing_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/bit_packing_test.cc -------------------------------------------------------------------------------- /klm/util/cat_compressed_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/cat_compressed_main.cc -------------------------------------------------------------------------------- /klm/util/double-conversion/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/double-conversion/LICENSE -------------------------------------------------------------------------------- /klm/util/double-conversion/bignum-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/double-conversion/bignum-dtoa.h -------------------------------------------------------------------------------- /klm/util/double-conversion/bignum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/double-conversion/bignum.cc -------------------------------------------------------------------------------- /klm/util/double-conversion/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/double-conversion/bignum.h -------------------------------------------------------------------------------- /klm/util/double-conversion/diy-fp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/double-conversion/diy-fp.cc -------------------------------------------------------------------------------- /klm/util/double-conversion/diy-fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/double-conversion/diy-fp.h -------------------------------------------------------------------------------- /klm/util/double-conversion/fast-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/double-conversion/fast-dtoa.cc -------------------------------------------------------------------------------- /klm/util/double-conversion/fast-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/double-conversion/fast-dtoa.h -------------------------------------------------------------------------------- /klm/util/double-conversion/fixed-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/double-conversion/fixed-dtoa.cc -------------------------------------------------------------------------------- /klm/util/double-conversion/fixed-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/double-conversion/fixed-dtoa.h -------------------------------------------------------------------------------- /klm/util/double-conversion/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/double-conversion/ieee.h -------------------------------------------------------------------------------- /klm/util/double-conversion/strtod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/double-conversion/strtod.cc -------------------------------------------------------------------------------- /klm/util/double-conversion/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/double-conversion/strtod.h -------------------------------------------------------------------------------- /klm/util/double-conversion/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/double-conversion/utils.h -------------------------------------------------------------------------------- /klm/util/ersatz_progress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/ersatz_progress.cc -------------------------------------------------------------------------------- /klm/util/ersatz_progress.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/ersatz_progress.hh -------------------------------------------------------------------------------- /klm/util/exception.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/exception.cc -------------------------------------------------------------------------------- /klm/util/exception.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/exception.hh -------------------------------------------------------------------------------- /klm/util/fake_ofstream.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/fake_ofstream.hh -------------------------------------------------------------------------------- /klm/util/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/file.cc -------------------------------------------------------------------------------- /klm/util/file.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/file.hh -------------------------------------------------------------------------------- /klm/util/file_piece.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/file_piece.cc -------------------------------------------------------------------------------- /klm/util/file_piece.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/file_piece.hh -------------------------------------------------------------------------------- /klm/util/file_piece_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/file_piece_test.cc -------------------------------------------------------------------------------- /klm/util/fixed_array.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/fixed_array.hh -------------------------------------------------------------------------------- /klm/util/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/getopt.c -------------------------------------------------------------------------------- /klm/util/getopt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/getopt.hh -------------------------------------------------------------------------------- /klm/util/have.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/have.hh -------------------------------------------------------------------------------- /klm/util/joint_sort.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/joint_sort.hh -------------------------------------------------------------------------------- /klm/util/joint_sort_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/joint_sort_test.cc -------------------------------------------------------------------------------- /klm/util/mmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/mmap.cc -------------------------------------------------------------------------------- /klm/util/mmap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/mmap.hh -------------------------------------------------------------------------------- /klm/util/multi_intersection.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/multi_intersection.hh -------------------------------------------------------------------------------- /klm/util/multi_intersection_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/multi_intersection_test.cc -------------------------------------------------------------------------------- /klm/util/murmur_hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/murmur_hash.cc -------------------------------------------------------------------------------- /klm/util/murmur_hash.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/murmur_hash.hh -------------------------------------------------------------------------------- /klm/util/parallel_read.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/parallel_read.cc -------------------------------------------------------------------------------- /klm/util/parallel_read.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/parallel_read.hh -------------------------------------------------------------------------------- /klm/util/pcqueue.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/pcqueue.hh -------------------------------------------------------------------------------- /klm/util/pcqueue_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/pcqueue_test.cc -------------------------------------------------------------------------------- /klm/util/pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/pool.cc -------------------------------------------------------------------------------- /klm/util/pool.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/pool.hh -------------------------------------------------------------------------------- /klm/util/probing_hash_table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/probing_hash_table.hh -------------------------------------------------------------------------------- /klm/util/probing_hash_table_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/probing_hash_table_test.cc -------------------------------------------------------------------------------- /klm/util/proxy_iterator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/proxy_iterator.hh -------------------------------------------------------------------------------- /klm/util/read_compressed.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/read_compressed.cc -------------------------------------------------------------------------------- /klm/util/read_compressed.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/read_compressed.hh -------------------------------------------------------------------------------- /klm/util/read_compressed_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/read_compressed_test.cc -------------------------------------------------------------------------------- /klm/util/scoped.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/scoped.cc -------------------------------------------------------------------------------- /klm/util/scoped.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/scoped.hh -------------------------------------------------------------------------------- /klm/util/sized_iterator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/sized_iterator.hh -------------------------------------------------------------------------------- /klm/util/sized_iterator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/sized_iterator_test.cc -------------------------------------------------------------------------------- /klm/util/sorted_uniform.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/sorted_uniform.hh -------------------------------------------------------------------------------- /klm/util/sorted_uniform_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/sorted_uniform_test.cc -------------------------------------------------------------------------------- /klm/util/stream/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/CMakeLists.txt -------------------------------------------------------------------------------- /klm/util/stream/block.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/block.hh -------------------------------------------------------------------------------- /klm/util/stream/chain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/chain.cc -------------------------------------------------------------------------------- /klm/util/stream/chain.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/chain.hh -------------------------------------------------------------------------------- /klm/util/stream/config.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/config.hh -------------------------------------------------------------------------------- /klm/util/stream/io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/io.cc -------------------------------------------------------------------------------- /klm/util/stream/io.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/io.hh -------------------------------------------------------------------------------- /klm/util/stream/io_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/io_test.cc -------------------------------------------------------------------------------- /klm/util/stream/line_input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/line_input.cc -------------------------------------------------------------------------------- /klm/util/stream/line_input.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/line_input.hh -------------------------------------------------------------------------------- /klm/util/stream/multi_progress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/multi_progress.cc -------------------------------------------------------------------------------- /klm/util/stream/multi_progress.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/multi_progress.hh -------------------------------------------------------------------------------- /klm/util/stream/multi_stream.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/multi_stream.hh -------------------------------------------------------------------------------- /klm/util/stream/sort.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/sort.hh -------------------------------------------------------------------------------- /klm/util/stream/sort_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/sort_test.cc -------------------------------------------------------------------------------- /klm/util/stream/stream.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/stream.hh -------------------------------------------------------------------------------- /klm/util/stream/stream_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/stream_test.cc -------------------------------------------------------------------------------- /klm/util/stream/timer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/stream/timer.hh -------------------------------------------------------------------------------- /klm/util/string_piece.cc: -------------------------------------------------------------------------------- 1 | // moved to cdec/utils 2 | -------------------------------------------------------------------------------- /klm/util/string_piece.hh: -------------------------------------------------------------------------------- 1 | #include "utils/string_piece.hh" 2 | -------------------------------------------------------------------------------- /klm/util/string_piece_hash.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/string_piece_hash.hh -------------------------------------------------------------------------------- /klm/util/thread_pool.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/thread_pool.hh -------------------------------------------------------------------------------- /klm/util/tokenize_piece.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/tokenize_piece.hh -------------------------------------------------------------------------------- /klm/util/tokenize_piece_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/tokenize_piece_test.cc -------------------------------------------------------------------------------- /klm/util/unistd.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/unistd.hh -------------------------------------------------------------------------------- /klm/util/usage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/usage.cc -------------------------------------------------------------------------------- /klm/util/usage.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/klm/util/usage.hh -------------------------------------------------------------------------------- /mteval/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/CMakeLists.txt -------------------------------------------------------------------------------- /mteval/README.protocol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/README.protocol -------------------------------------------------------------------------------- /mteval/aer_scorer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/aer_scorer.cc -------------------------------------------------------------------------------- /mteval/aer_scorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/aer_scorer.h -------------------------------------------------------------------------------- /mteval/comb_scorer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/comb_scorer.cc -------------------------------------------------------------------------------- /mteval/comb_scorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/comb_scorer.h -------------------------------------------------------------------------------- /mteval/external_scorer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/external_scorer.cc -------------------------------------------------------------------------------- /mteval/external_scorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/external_scorer.h -------------------------------------------------------------------------------- /mteval/fast_score.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/fast_score.cc -------------------------------------------------------------------------------- /mteval/levenshtein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/levenshtein.h -------------------------------------------------------------------------------- /mteval/mbr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/mbr.pl -------------------------------------------------------------------------------- /mteval/mbr_kbest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/mbr_kbest.cc -------------------------------------------------------------------------------- /mteval/meteor_jar.cc.in: -------------------------------------------------------------------------------- 1 | 2 | const char* meteor_jar_path = "@METEOR_JAR@"; 3 | 4 | -------------------------------------------------------------------------------- /mteval/ns.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns.cc -------------------------------------------------------------------------------- /mteval/ns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns.h -------------------------------------------------------------------------------- /mteval/ns_cer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns_cer.cc -------------------------------------------------------------------------------- /mteval/ns_cer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns_cer.h -------------------------------------------------------------------------------- /mteval/ns_comb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns_comb.cc -------------------------------------------------------------------------------- /mteval/ns_comb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns_comb.h -------------------------------------------------------------------------------- /mteval/ns_docscorer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns_docscorer.cc -------------------------------------------------------------------------------- /mteval/ns_docscorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns_docscorer.h -------------------------------------------------------------------------------- /mteval/ns_ext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns_ext.cc -------------------------------------------------------------------------------- /mteval/ns_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns_ext.h -------------------------------------------------------------------------------- /mteval/ns_ssk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns_ssk.cc -------------------------------------------------------------------------------- /mteval/ns_ssk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns_ssk.h -------------------------------------------------------------------------------- /mteval/ns_ter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns_ter.cc -------------------------------------------------------------------------------- /mteval/ns_ter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns_ter.h -------------------------------------------------------------------------------- /mteval/ns_ter_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns_ter_impl.cc -------------------------------------------------------------------------------- /mteval/ns_ter_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns_ter_impl.h -------------------------------------------------------------------------------- /mteval/ns_wer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns_wer.cc -------------------------------------------------------------------------------- /mteval/ns_wer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ns_wer.h -------------------------------------------------------------------------------- /mteval/scorer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/scorer.cc -------------------------------------------------------------------------------- /mteval/scorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/scorer.h -------------------------------------------------------------------------------- /mteval/scorer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/scorer_test.cc -------------------------------------------------------------------------------- /mteval/ter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ter.cc -------------------------------------------------------------------------------- /mteval/ter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/ter.h -------------------------------------------------------------------------------- /mteval/test_data/devset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/test_data/devset.txt -------------------------------------------------------------------------------- /mteval/test_data/re.txt.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/test_data/re.txt.0 -------------------------------------------------------------------------------- /mteval/test_data/re.txt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/test_data/re.txt.1 -------------------------------------------------------------------------------- /mteval/test_data/re.txt.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/test_data/re.txt.2 -------------------------------------------------------------------------------- /mteval/test_data/re.txt.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/test_data/re.txt.3 -------------------------------------------------------------------------------- /mteval/wer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/wer.cc -------------------------------------------------------------------------------- /mteval/wer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/mteval/wer.h -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/README.md -------------------------------------------------------------------------------- /python/cdec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/__init__.py -------------------------------------------------------------------------------- /python/cdec/_cdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/_cdec.cpp -------------------------------------------------------------------------------- /python/cdec/_cdec.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/_cdec.pyx -------------------------------------------------------------------------------- /python/cdec/configobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/configobj.py -------------------------------------------------------------------------------- /python/cdec/decoder.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/decoder.pxd -------------------------------------------------------------------------------- /python/cdec/grammar.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/grammar.pxd -------------------------------------------------------------------------------- /python/cdec/grammar.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/grammar.pxi -------------------------------------------------------------------------------- /python/cdec/hypergraph.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/hypergraph.pxd -------------------------------------------------------------------------------- /python/cdec/hypergraph.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/hypergraph.pxi -------------------------------------------------------------------------------- /python/cdec/kbest.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/kbest.pxd -------------------------------------------------------------------------------- /python/cdec/lattice.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/lattice.pxd -------------------------------------------------------------------------------- /python/cdec/lattice.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/lattice.pxi -------------------------------------------------------------------------------- /python/cdec/mteval.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/mteval.pxd -------------------------------------------------------------------------------- /python/cdec/mteval.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/mteval.pxi -------------------------------------------------------------------------------- /python/cdec/observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/observer.h -------------------------------------------------------------------------------- /python/cdec/py_scorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/py_scorer.h -------------------------------------------------------------------------------- /python/cdec/sa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/__init__.py -------------------------------------------------------------------------------- /python/cdec/sa/_sa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/_sa.cpp -------------------------------------------------------------------------------- /python/cdec/sa/_sa.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/_sa.pxd -------------------------------------------------------------------------------- /python/cdec/sa/_sa.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/_sa.pyx -------------------------------------------------------------------------------- /python/cdec/sa/alignment.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/alignment.pxi -------------------------------------------------------------------------------- /python/cdec/sa/bilex.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/bilex.pxi -------------------------------------------------------------------------------- /python/cdec/sa/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/compile.py -------------------------------------------------------------------------------- /python/cdec/sa/data_array.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/data_array.pxi -------------------------------------------------------------------------------- /python/cdec/sa/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/extract.py -------------------------------------------------------------------------------- /python/cdec/sa/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/extractor.py -------------------------------------------------------------------------------- /python/cdec/sa/features.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/features.pxi -------------------------------------------------------------------------------- /python/cdec/sa/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/features.py -------------------------------------------------------------------------------- /python/cdec/sa/float_list.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/float_list.pxi -------------------------------------------------------------------------------- /python/cdec/sa/int_list.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/int_list.pxi -------------------------------------------------------------------------------- /python/cdec/sa/lcp.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/lcp.pxi -------------------------------------------------------------------------------- /python/cdec/sa/online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/online.py -------------------------------------------------------------------------------- /python/cdec/sa/precomputation.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/precomputation.pxi -------------------------------------------------------------------------------- /python/cdec/sa/rule.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/rule.pxi -------------------------------------------------------------------------------- /python/cdec/sa/rulefactory.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/rulefactory.pxi -------------------------------------------------------------------------------- /python/cdec/sa/str_map.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/str_map.pxi -------------------------------------------------------------------------------- /python/cdec/sa/strmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/strmap.cc -------------------------------------------------------------------------------- /python/cdec/sa/strmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/strmap.h -------------------------------------------------------------------------------- /python/cdec/sa/suffix_array.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/suffix_array.pxi -------------------------------------------------------------------------------- /python/cdec/sa/sym.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/sym.pxi -------------------------------------------------------------------------------- /python/cdec/sa/veb.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/sa/veb.pxi -------------------------------------------------------------------------------- /python/cdec/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/score.py -------------------------------------------------------------------------------- /python/cdec/utils.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/utils.pxd -------------------------------------------------------------------------------- /python/cdec/vectors.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/cdec/vectors.pxi -------------------------------------------------------------------------------- /python/examples/cdec-mt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/examples/cdec-mt.py -------------------------------------------------------------------------------- /python/examples/rampion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/examples/rampion.py -------------------------------------------------------------------------------- /python/examples/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/examples/test.py -------------------------------------------------------------------------------- /python/setup.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/setup.py.in -------------------------------------------------------------------------------- /python/tests/extractor/corpus.al.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/tests/extractor/corpus.al.gz -------------------------------------------------------------------------------- /python/tests/extractor/corpus.fr-en.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/tests/extractor/corpus.fr-en.gz -------------------------------------------------------------------------------- /python/tests/extractor/gold-rules.sort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/tests/extractor/gold-rules.sort -------------------------------------------------------------------------------- /python/tests/extractor/refmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/tests/extractor/refmt.py -------------------------------------------------------------------------------- /python/tests/extractor/rules.sort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/tests/extractor/rules.sort -------------------------------------------------------------------------------- /python/tests/extractor/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/tests/extractor/run.sh -------------------------------------------------------------------------------- /python/tests/extractor/test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/tests/extractor/test.in -------------------------------------------------------------------------------- /python/tests/extractor/test.vis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/tests/extractor/test.vis -------------------------------------------------------------------------------- /python/tests/test_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/python/tests/test_decoder.py -------------------------------------------------------------------------------- /realtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/realtime/README.md -------------------------------------------------------------------------------- /realtime/mkconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/realtime/mkconfig.py -------------------------------------------------------------------------------- /realtime/mkinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/realtime/mkinput.py -------------------------------------------------------------------------------- /realtime/realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/realtime/realtime.py -------------------------------------------------------------------------------- /realtime/rt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/realtime/rt/__init__.py -------------------------------------------------------------------------------- /realtime/rt/aligner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/realtime/rt/aligner.py -------------------------------------------------------------------------------- /realtime/rt/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/realtime/rt/decoder.py -------------------------------------------------------------------------------- /realtime/rt/rt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/realtime/rt/rt.py -------------------------------------------------------------------------------- /realtime/rt/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/realtime/rt/util.py -------------------------------------------------------------------------------- /tests/IPC/Run3.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/IPC/Run3.pm -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/README -------------------------------------------------------------------------------- /tests/issues/5/mapoutput.abj.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/issues/5/mapoutput.abj.gz -------------------------------------------------------------------------------- /tests/issues/5/test-error.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/issues/5/test-error.sh -------------------------------------------------------------------------------- /tests/issues/5/weights.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/issues/5/weights.0 -------------------------------------------------------------------------------- /tests/run-system-tests.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/run-system-tests.pl -------------------------------------------------------------------------------- /tests/system_tests/australia/cdec.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/australia/cdec.ini -------------------------------------------------------------------------------- /tests/system_tests/australia/gold.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system_tests/australia/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/australia/input.txt -------------------------------------------------------------------------------- /tests/system_tests/australia/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/australia/stderr -------------------------------------------------------------------------------- /tests/system_tests/australia/weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/australia/weights -------------------------------------------------------------------------------- /tests/system_tests/cfg_rescore/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/cfg_rescore/README -------------------------------------------------------------------------------- /tests/system_tests/cfg_rescore/cdec.ini: -------------------------------------------------------------------------------- 1 | formalism=rescore 2 | k_best=100 3 | -------------------------------------------------------------------------------- /tests/system_tests/cfg_rescore/input.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/cfg_rescore/input.cfg -------------------------------------------------------------------------------- /tests/system_tests/cfg_rescore/input.txt: -------------------------------------------------------------------------------- 1 | ::forest:: input0.hg.bin.gz 2 | -------------------------------------------------------------------------------- /tests/system_tests/cfg_rescore/weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/cfg_rescore/weights -------------------------------------------------------------------------------- /tests/system_tests/conll/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/conll/README -------------------------------------------------------------------------------- /tests/system_tests/conll/cdec.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/conll/cdec.ini -------------------------------------------------------------------------------- /tests/system_tests/conll/gold.statistics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/conll/gold.statistics -------------------------------------------------------------------------------- /tests/system_tests/conll/gold.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system_tests/conll/input.conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/conll/input.conll -------------------------------------------------------------------------------- /tests/system_tests/conll/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/conll/input.txt -------------------------------------------------------------------------------- /tests/system_tests/conll/tagset.txt: -------------------------------------------------------------------------------- 1 | B I O 2 | -------------------------------------------------------------------------------- /tests/system_tests/conll/weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/conll/weights -------------------------------------------------------------------------------- /tests/system_tests/ftrans/cdec.ini: -------------------------------------------------------------------------------- 1 | formalism=fst 2 | k_best=1000 3 | grammar=ftrans.pt 4 | -------------------------------------------------------------------------------- /tests/system_tests/ftrans/ftrans.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/ftrans/ftrans.pt -------------------------------------------------------------------------------- /tests/system_tests/ftrans/gold.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/ftrans/gold.stdout -------------------------------------------------------------------------------- /tests/system_tests/ftrans/input.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/ftrans/input.cfg -------------------------------------------------------------------------------- /tests/system_tests/ftrans/input.txt: -------------------------------------------------------------------------------- 1 | ::forest:: input0.hg.bin.gz 2 | -------------------------------------------------------------------------------- /tests/system_tests/ftrans/weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/ftrans/weights -------------------------------------------------------------------------------- /tests/system_tests/hmm/cdec.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/hmm/cdec.ini -------------------------------------------------------------------------------- /tests/system_tests/hmm/gold.statistics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/hmm/gold.statistics -------------------------------------------------------------------------------- /tests/system_tests/hmm/gold.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/hmm/gold.stdout -------------------------------------------------------------------------------- /tests/system_tests/hmm/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/hmm/input.txt -------------------------------------------------------------------------------- /tests/system_tests/hmm/weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/hmm/weights -------------------------------------------------------------------------------- /tests/system_tests/lattice/cdec.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/lattice/cdec.ini -------------------------------------------------------------------------------- /tests/system_tests/lattice/gold.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/lattice/gold.stdout -------------------------------------------------------------------------------- /tests/system_tests/lattice/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/lattice/input.txt -------------------------------------------------------------------------------- /tests/system_tests/lattice/lattice.scfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/lattice/lattice.scfg -------------------------------------------------------------------------------- /tests/system_tests/lattice/weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/lattice/weights -------------------------------------------------------------------------------- /tests/system_tests/mcle_gradient/weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/mcle_gradient/weights -------------------------------------------------------------------------------- /tests/system_tests/multigram/cdec.ini: -------------------------------------------------------------------------------- 1 | formalism=scfg 2 | -------------------------------------------------------------------------------- /tests/system_tests/multigram/g1.scfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/multigram/g1.scfg -------------------------------------------------------------------------------- /tests/system_tests/multigram/g2.scfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/multigram/g2.scfg -------------------------------------------------------------------------------- /tests/system_tests/multigram/gold.stdout: -------------------------------------------------------------------------------- 1 | foo bar 2 | -------------------------------------------------------------------------------- /tests/system_tests/multigram/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/multigram/input.txt -------------------------------------------------------------------------------- /tests/system_tests/multigram/weights: -------------------------------------------------------------------------------- 1 | Glue -1 2 | -------------------------------------------------------------------------------- /tests/system_tests/t2s/cdec.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/t2s/cdec.ini -------------------------------------------------------------------------------- /tests/system_tests/t2s/gold.statistics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/t2s/gold.statistics -------------------------------------------------------------------------------- /tests/system_tests/t2s/gold.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/t2s/gold.stdout -------------------------------------------------------------------------------- /tests/system_tests/t2s/grammar.t2s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/t2s/grammar.t2s -------------------------------------------------------------------------------- /tests/system_tests/t2s/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/t2s/input.txt -------------------------------------------------------------------------------- /tests/system_tests/t2s/weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/t2s/weights -------------------------------------------------------------------------------- /tests/system_tests/tagger/TRAIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/tagger/TRAIN -------------------------------------------------------------------------------- /tests/system_tests/tagger/cdec.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/tagger/cdec.ini -------------------------------------------------------------------------------- /tests/system_tests/tagger/gold.stdout: -------------------------------------------------------------------------------- 1 | c c c 2 | c 3 | -------------------------------------------------------------------------------- /tests/system_tests/tagger/input.txt: -------------------------------------------------------------------------------- 1 | A B C 2 | A 3 | -------------------------------------------------------------------------------- /tests/system_tests/tagger/pos.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/tagger/pos.grammar -------------------------------------------------------------------------------- /tests/system_tests/tagger/tagset: -------------------------------------------------------------------------------- 1 | a b c 2 | -------------------------------------------------------------------------------- /tests/system_tests/tagger/weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/tagger/weights -------------------------------------------------------------------------------- /tests/system_tests/unsup-align/cdec.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/unsup-align/cdec.ini -------------------------------------------------------------------------------- /tests/system_tests/unsup-align/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/unsup-align/input.txt -------------------------------------------------------------------------------- /tests/system_tests/unsup-align/weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/system_tests/unsup-align/weights -------------------------------------------------------------------------------- /tests/tools/compare-statistics.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/tools/compare-statistics.pl -------------------------------------------------------------------------------- /tests/tools/filter-stderr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/tools/filter-stderr.pl -------------------------------------------------------------------------------- /tests/tools/flex-diff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/tests/tools/flex-diff.pl -------------------------------------------------------------------------------- /training/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/CMakeLists.txt -------------------------------------------------------------------------------- /training/augment_grammar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/augment_grammar.cc -------------------------------------------------------------------------------- /training/const_reorder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/const_reorder/CMakeLists.txt -------------------------------------------------------------------------------- /training/const_reorder/trainer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/const_reorder/trainer.cc -------------------------------------------------------------------------------- /training/const_reorder/trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/const_reorder/trainer.h -------------------------------------------------------------------------------- /training/crf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/crf/CMakeLists.txt -------------------------------------------------------------------------------- /training/crf/baum_welch_example/cdec.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/crf/baum_welch_example/cdec.ini -------------------------------------------------------------------------------- /training/crf/baum_welch_example/tagset.txt: -------------------------------------------------------------------------------- 1 | 1 2 3 4 2 | -------------------------------------------------------------------------------- /training/crf/cllh_observer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/crf/cllh_observer.cc -------------------------------------------------------------------------------- /training/crf/cllh_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/crf/cllh_observer.h -------------------------------------------------------------------------------- /training/crf/mpi_adagrad_optimize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/crf/mpi_adagrad_optimize.cc -------------------------------------------------------------------------------- /training/crf/mpi_batch_optimize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/crf/mpi_batch_optimize.cc -------------------------------------------------------------------------------- /training/crf/mpi_baum_welch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/crf/mpi_baum_welch.cc -------------------------------------------------------------------------------- /training/crf/mpi_compute_cllh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/crf/mpi_compute_cllh.cc -------------------------------------------------------------------------------- /training/crf/mpi_extract_features.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/crf/mpi_extract_features.cc -------------------------------------------------------------------------------- /training/crf/mpi_extract_reachable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/crf/mpi_extract_reachable.cc -------------------------------------------------------------------------------- /training/crf/mpi_flex_optimize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/crf/mpi_flex_optimize.cc -------------------------------------------------------------------------------- /training/crf/mpi_online_optimize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/crf/mpi_online_optimize.cc -------------------------------------------------------------------------------- /training/dpmert/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/CMakeLists.txt -------------------------------------------------------------------------------- /training/dpmert/ces.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/ces.cc -------------------------------------------------------------------------------- /training/dpmert/ces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/ces.h -------------------------------------------------------------------------------- /training/dpmert/divide_refs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/divide_refs.py -------------------------------------------------------------------------------- /training/dpmert/dpmert.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/dpmert.pl -------------------------------------------------------------------------------- /training/dpmert/error_surface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/error_surface.cc -------------------------------------------------------------------------------- /training/dpmert/error_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/error_surface.h -------------------------------------------------------------------------------- /training/dpmert/line_mediator.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/line_mediator.pl -------------------------------------------------------------------------------- /training/dpmert/line_optimizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/line_optimizer.cc -------------------------------------------------------------------------------- /training/dpmert/line_optimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/line_optimizer.h -------------------------------------------------------------------------------- /training/dpmert/lo_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/lo_test.cc -------------------------------------------------------------------------------- /training/dpmert/mert_geometry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/mert_geometry.cc -------------------------------------------------------------------------------- /training/dpmert/mert_geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/mert_geometry.h -------------------------------------------------------------------------------- /training/dpmert/mr_dpmert_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/mr_dpmert_map.cc -------------------------------------------------------------------------------- /training/dpmert/mr_dpmert_reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/mr_dpmert_reduce.cc -------------------------------------------------------------------------------- /training/dpmert/test_aer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/test_aer/README -------------------------------------------------------------------------------- /training/dpmert/test_aer/cdec.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/test_aer/cdec.ini -------------------------------------------------------------------------------- /training/dpmert/test_aer/corpus.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/test_aer/corpus.src -------------------------------------------------------------------------------- /training/dpmert/test_aer/grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/test_aer/grammar -------------------------------------------------------------------------------- /training/dpmert/test_aer/ref.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/test_aer/ref.0 -------------------------------------------------------------------------------- /training/dpmert/test_aer/weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/test_aer/weights -------------------------------------------------------------------------------- /training/dpmert/test_data/0.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/test_data/0.bin.gz -------------------------------------------------------------------------------- /training/dpmert/test_data/1.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/test_data/1.bin.gz -------------------------------------------------------------------------------- /training/dpmert/test_data/c2e.txt.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/test_data/c2e.txt.0 -------------------------------------------------------------------------------- /training/dpmert/test_data/c2e.txt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/test_data/c2e.txt.1 -------------------------------------------------------------------------------- /training/dpmert/test_data/c2e.txt.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/test_data/c2e.txt.2 -------------------------------------------------------------------------------- /training/dpmert/test_data/c2e.txt.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/test_data/c2e.txt.3 -------------------------------------------------------------------------------- /training/dpmert/test_data/re.txt.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/test_data/re.txt.0 -------------------------------------------------------------------------------- /training/dpmert/test_data/re.txt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/test_data/re.txt.1 -------------------------------------------------------------------------------- /training/dpmert/test_data/re.txt.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/test_data/re.txt.2 -------------------------------------------------------------------------------- /training/dpmert/test_data/re.txt.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dpmert/test_data/re.txt.3 -------------------------------------------------------------------------------- /training/dtrain/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/CMakeLists.txt -------------------------------------------------------------------------------- /training/dtrain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/README.md -------------------------------------------------------------------------------- /training/dtrain/dtrain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/dtrain.cc -------------------------------------------------------------------------------- /training/dtrain/dtrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/dtrain.h -------------------------------------------------------------------------------- /training/dtrain/examples/parallelized/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/examples/parallelized/in -------------------------------------------------------------------------------- /training/dtrain/examples/standard/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/examples/standard/README -------------------------------------------------------------------------------- /training/dtrain/examples/toy/cdec.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/examples/toy/cdec.ini -------------------------------------------------------------------------------- /training/dtrain/examples/toy/dtrain.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/examples/toy/dtrain.ini -------------------------------------------------------------------------------- /training/dtrain/examples/toy/grammar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/examples/toy/grammar.gz -------------------------------------------------------------------------------- /training/dtrain/examples/toy/src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/examples/toy/src -------------------------------------------------------------------------------- /training/dtrain/examples/toy/tgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/examples/toy/tgt -------------------------------------------------------------------------------- /training/dtrain/kbestget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/kbestget.h -------------------------------------------------------------------------------- /training/dtrain/ksampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/ksampler.h -------------------------------------------------------------------------------- /training/dtrain/lplp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/lplp.rb -------------------------------------------------------------------------------- /training/dtrain/pairsampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/pairsampling.h -------------------------------------------------------------------------------- /training/dtrain/parallelize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/parallelize.rb -------------------------------------------------------------------------------- /training/dtrain/score.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/score.cc -------------------------------------------------------------------------------- /training/dtrain/score.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/dtrain/score.h -------------------------------------------------------------------------------- /training/latent_svm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/latent_svm/CMakeLists.txt -------------------------------------------------------------------------------- /training/latent_svm/latent_svm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/latent_svm/latent_svm.cc -------------------------------------------------------------------------------- /training/liblbfgs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/liblbfgs/CMakeLists.txt -------------------------------------------------------------------------------- /training/liblbfgs/arithmetic_ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/liblbfgs/arithmetic_ansi.h -------------------------------------------------------------------------------- /training/liblbfgs/arithmetic_sse_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/liblbfgs/arithmetic_sse_float.h -------------------------------------------------------------------------------- /training/liblbfgs/lbfgs++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/liblbfgs/lbfgs++.h -------------------------------------------------------------------------------- /training/liblbfgs/lbfgs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/liblbfgs/lbfgs.c -------------------------------------------------------------------------------- /training/liblbfgs/lbfgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/liblbfgs/lbfgs.h -------------------------------------------------------------------------------- /training/liblbfgs/ll_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/liblbfgs/ll_test.cc -------------------------------------------------------------------------------- /training/minrisk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/minrisk/CMakeLists.txt -------------------------------------------------------------------------------- /training/minrisk/minrisk.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/minrisk/minrisk.pl -------------------------------------------------------------------------------- /training/minrisk/minrisk_optimize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/minrisk/minrisk_optimize.cc -------------------------------------------------------------------------------- /training/mira/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/mira/CMakeLists.txt -------------------------------------------------------------------------------- /training/mira/ada_opt_sm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/mira/ada_opt_sm.cc -------------------------------------------------------------------------------- /training/mira/kbest_cut_mira.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/mira/kbest_cut_mira.cc -------------------------------------------------------------------------------- /training/mira/kbest_mira.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/mira/kbest_mira.cc -------------------------------------------------------------------------------- /training/mira/mira.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/mira/mira.py -------------------------------------------------------------------------------- /training/plftools.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/plftools.cc -------------------------------------------------------------------------------- /training/pro/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/pro/CMakeLists.txt -------------------------------------------------------------------------------- /training/pro/mr_pro_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/pro/mr_pro_map.cc -------------------------------------------------------------------------------- /training/pro/mr_pro_reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/pro/mr_pro_reduce.cc -------------------------------------------------------------------------------- /training/pro/pro.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/pro/pro.pl -------------------------------------------------------------------------------- /training/rampion/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/rampion/CMakeLists.txt -------------------------------------------------------------------------------- /training/rampion/rampion.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/rampion/rampion.pl -------------------------------------------------------------------------------- /training/rampion/rampion_cccp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/rampion/rampion_cccp.cc -------------------------------------------------------------------------------- /training/test_ngram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/test_ngram.cc -------------------------------------------------------------------------------- /training/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/CMakeLists.txt -------------------------------------------------------------------------------- /training/utils/candidate_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/candidate_set.cc -------------------------------------------------------------------------------- /training/utils/candidate_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/candidate_set.h -------------------------------------------------------------------------------- /training/utils/decode-and-evaluate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/decode-and-evaluate.pl -------------------------------------------------------------------------------- /training/utils/entropy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/entropy.cc -------------------------------------------------------------------------------- /training/utils/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/entropy.h -------------------------------------------------------------------------------- /training/utils/grammar_convert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/grammar_convert.cc -------------------------------------------------------------------------------- /training/utils/lbfgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/lbfgs.h -------------------------------------------------------------------------------- /training/utils/lbfgs_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/lbfgs_test.cc -------------------------------------------------------------------------------- /training/utils/libcall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/libcall.pl -------------------------------------------------------------------------------- /training/utils/online_optimizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/online_optimizer.cc -------------------------------------------------------------------------------- /training/utils/online_optimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/online_optimizer.h -------------------------------------------------------------------------------- /training/utils/optimize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/optimize.cc -------------------------------------------------------------------------------- /training/utils/optimize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/optimize.h -------------------------------------------------------------------------------- /training/utils/optimize_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/optimize_test.cc -------------------------------------------------------------------------------- /training/utils/parallelize.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/parallelize.pl -------------------------------------------------------------------------------- /training/utils/risk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/risk.cc -------------------------------------------------------------------------------- /training/utils/risk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/risk.h -------------------------------------------------------------------------------- /training/utils/sentclient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/sentclient.cc -------------------------------------------------------------------------------- /training/utils/sentserver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/sentserver.cc -------------------------------------------------------------------------------- /training/utils/sentserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/training/utils/sentserver.h -------------------------------------------------------------------------------- /utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/CMakeLists.txt -------------------------------------------------------------------------------- /utils/alias_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/alias_sampler.h -------------------------------------------------------------------------------- /utils/alignment_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/alignment_io.cc -------------------------------------------------------------------------------- /utils/alignment_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/alignment_io.h -------------------------------------------------------------------------------- /utils/array2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/array2d.h -------------------------------------------------------------------------------- /utils/atools.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/atools.cc -------------------------------------------------------------------------------- /utils/b64featvector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/b64featvector.cc -------------------------------------------------------------------------------- /utils/b64featvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/b64featvector.h -------------------------------------------------------------------------------- /utils/b64tools.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/b64tools.cc -------------------------------------------------------------------------------- /utils/b64tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/b64tools.h -------------------------------------------------------------------------------- /utils/batched_append.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/batched_append.h -------------------------------------------------------------------------------- /utils/city.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/city.cc -------------------------------------------------------------------------------- /utils/city.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/city.h -------------------------------------------------------------------------------- /utils/citycrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/citycrc.h -------------------------------------------------------------------------------- /utils/corpus_tools.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/corpus_tools.cc -------------------------------------------------------------------------------- /utils/corpus_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/corpus_tools.h -------------------------------------------------------------------------------- /utils/dedup_corpus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/dedup_corpus.cc -------------------------------------------------------------------------------- /utils/dict.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/dict.cc -------------------------------------------------------------------------------- /utils/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/dict.h -------------------------------------------------------------------------------- /utils/dict_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/dict_test.cc -------------------------------------------------------------------------------- /utils/exp_semiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/exp_semiring.h -------------------------------------------------------------------------------- /utils/fast_lexical_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/fast_lexical_cast.hpp -------------------------------------------------------------------------------- /utils/fast_sparse_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/fast_sparse_vector.h -------------------------------------------------------------------------------- /utils/fdict.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/fdict.cc -------------------------------------------------------------------------------- /utils/fdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/fdict.h -------------------------------------------------------------------------------- /utils/feature_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/feature_vector.h -------------------------------------------------------------------------------- /utils/filelib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/filelib.cc -------------------------------------------------------------------------------- /utils/filelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/filelib.h -------------------------------------------------------------------------------- /utils/gzstream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/gzstream.cc -------------------------------------------------------------------------------- /utils/gzstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/gzstream.h -------------------------------------------------------------------------------- /utils/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/hash.h -------------------------------------------------------------------------------- /utils/have_64_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/have_64_bits.h -------------------------------------------------------------------------------- /utils/indices_after.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/indices_after.h -------------------------------------------------------------------------------- /utils/intrusive_refcount.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/intrusive_refcount.hpp -------------------------------------------------------------------------------- /utils/kernel_string_subseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/kernel_string_subseq.h -------------------------------------------------------------------------------- /utils/logval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/logval.h -------------------------------------------------------------------------------- /utils/logval_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/logval_test.cc -------------------------------------------------------------------------------- /utils/m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/m.h -------------------------------------------------------------------------------- /utils/m_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/m_test.cc -------------------------------------------------------------------------------- /utils/maxent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/maxent.cpp -------------------------------------------------------------------------------- /utils/maxent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/maxent.h -------------------------------------------------------------------------------- /utils/murmur_hash3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/murmur_hash3.cc -------------------------------------------------------------------------------- /utils/murmur_hash3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/murmur_hash3.h -------------------------------------------------------------------------------- /utils/named_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/named_enum.h -------------------------------------------------------------------------------- /utils/null_deleter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/null_deleter.h -------------------------------------------------------------------------------- /utils/null_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/null_traits.h -------------------------------------------------------------------------------- /utils/prob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/prob.h -------------------------------------------------------------------------------- /utils/reconstruct_weights.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/reconstruct_weights.cc -------------------------------------------------------------------------------- /utils/sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/sampler.h -------------------------------------------------------------------------------- /utils/semiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/semiring.h -------------------------------------------------------------------------------- /utils/show.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/show.h -------------------------------------------------------------------------------- /utils/small_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/small_vector.h -------------------------------------------------------------------------------- /utils/small_vector_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/small_vector_test.cc -------------------------------------------------------------------------------- /utils/sparse_vector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/sparse_vector.cc -------------------------------------------------------------------------------- /utils/sparse_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/sparse_vector.h -------------------------------------------------------------------------------- /utils/star.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/star.h -------------------------------------------------------------------------------- /utils/static_utoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/static_utoa.h -------------------------------------------------------------------------------- /utils/string_piece.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/string_piece.cc -------------------------------------------------------------------------------- /utils/string_piece.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/string_piece.hh -------------------------------------------------------------------------------- /utils/stringlib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/stringlib.cc -------------------------------------------------------------------------------- /utils/stringlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/stringlib.h -------------------------------------------------------------------------------- /utils/stringlib_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/stringlib_test.cc -------------------------------------------------------------------------------- /utils/sv_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/sv_test.cc -------------------------------------------------------------------------------- /utils/tdict.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/tdict.cc -------------------------------------------------------------------------------- /utils/tdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/tdict.h -------------------------------------------------------------------------------- /utils/test_data/weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/test_data/weights -------------------------------------------------------------------------------- /utils/timing_stats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/timing_stats.cc -------------------------------------------------------------------------------- /utils/timing_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/timing_stats.h -------------------------------------------------------------------------------- /utils/ts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/ts.cc -------------------------------------------------------------------------------- /utils/utoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/utoa.h -------------------------------------------------------------------------------- /utils/value_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/value_array.h -------------------------------------------------------------------------------- /utils/verbose.cc: -------------------------------------------------------------------------------- 1 | #include "verbose.h" 2 | 3 | bool SILENT = false; 4 | 5 | -------------------------------------------------------------------------------- /utils/verbose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/verbose.h -------------------------------------------------------------------------------- /utils/warning_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/warning_compiler.h -------------------------------------------------------------------------------- /utils/warning_pop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/warning_pop.h -------------------------------------------------------------------------------- /utils/warning_push.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/warning_push.h -------------------------------------------------------------------------------- /utils/weights.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/weights.cc -------------------------------------------------------------------------------- /utils/weights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/weights.h -------------------------------------------------------------------------------- /utils/weights_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/weights_test.cc -------------------------------------------------------------------------------- /utils/wordid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/wordid.h -------------------------------------------------------------------------------- /utils/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/utils/writer.h -------------------------------------------------------------------------------- /word-aligner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/CMakeLists.txt -------------------------------------------------------------------------------- /word-aligner/aligner.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/aligner.pl -------------------------------------------------------------------------------- /word-aligner/binderiv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/binderiv.cc -------------------------------------------------------------------------------- /word-aligner/da.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/da.h -------------------------------------------------------------------------------- /word-aligner/fast_align.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/fast_align.cc -------------------------------------------------------------------------------- /word-aligner/force_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/force_align.py -------------------------------------------------------------------------------- /word-aligner/makefiles/makefile.grammars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/makefiles/makefile.grammars -------------------------------------------------------------------------------- /word-aligner/ortho-norm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/ortho-norm/README -------------------------------------------------------------------------------- /word-aligner/ortho-norm/ar.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/ortho-norm/ar.pl -------------------------------------------------------------------------------- /word-aligner/ortho-norm/cz.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/ortho-norm/cz.pl -------------------------------------------------------------------------------- /word-aligner/ortho-norm/en.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/ortho-norm/en.pl -------------------------------------------------------------------------------- /word-aligner/ortho-norm/fr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/ortho-norm/fr.pl -------------------------------------------------------------------------------- /word-aligner/ortho-norm/mg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/ortho-norm/mg.pl -------------------------------------------------------------------------------- /word-aligner/ortho-norm/ru.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/ortho-norm/ru.pl -------------------------------------------------------------------------------- /word-aligner/ortho-norm/rw.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/ortho-norm/rw.pl -------------------------------------------------------------------------------- /word-aligner/ortho-norm/ur.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/ortho-norm/ur.pl -------------------------------------------------------------------------------- /word-aligner/ortho-norm/zh.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | 3 | while(<>) { 4 | print; 5 | } 6 | 7 | -------------------------------------------------------------------------------- /word-aligner/stemmers/ar.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/stemmers/ar.pl -------------------------------------------------------------------------------- /word-aligner/stemmers/en.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/stemmers/en.pl -------------------------------------------------------------------------------- /word-aligner/stemmers/fr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/stemmers/fr.pl -------------------------------------------------------------------------------- /word-aligner/stemmers/mg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/stemmers/mg.pl -------------------------------------------------------------------------------- /word-aligner/stemmers/rw.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/stemmers/rw.pl -------------------------------------------------------------------------------- /word-aligner/stemmers/ur.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/stemmers/ur.pl -------------------------------------------------------------------------------- /word-aligner/stemmers/zh.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/stemmers/zh.pl -------------------------------------------------------------------------------- /word-aligner/support/classify.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/support/classify.pl -------------------------------------------------------------------------------- /word-aligner/support/extract_grammar.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/support/extract_grammar.pl -------------------------------------------------------------------------------- /word-aligner/support/extract_vocab.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/support/extract_vocab.pl -------------------------------------------------------------------------------- /word-aligner/support/extract_weights.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/support/extract_weights.pl -------------------------------------------------------------------------------- /word-aligner/support/invert_grammar.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/support/invert_grammar.pl -------------------------------------------------------------------------------- /word-aligner/support/make_lex_grammar.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/support/make_lex_grammar.pl -------------------------------------------------------------------------------- /word-aligner/support/merge_corpus.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/support/merge_corpus.pl -------------------------------------------------------------------------------- /word-aligner/ttables.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/ttables.cc -------------------------------------------------------------------------------- /word-aligner/ttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpony/cdec/HEAD/word-aligner/ttables.h --------------------------------------------------------------------------------