summaryrefslogtreecommitdiff
path: root/python/cdec
AgeCommit message (Collapse)Author
2014-03-11Update lexical weights in online grammar extractionmjdenkowski
2014-03-10Tuples are faster than bidirectional dictsmjdenkowski
2014-03-10Match Cython implementation subject to missing link issuemjdenkowski
2014-03-07Unsmoothed bilex. Cython uses smoothing?Michael Denkowski
2014-03-07More online bilex updatesMichael Denkowski
2014-03-06Compile count-based bilex table for online grammar extraction.Michael Denkowski
2014-03-03typo fixMichael Denkowski
2014-03-03Online bilex countsMichael Denkowski
2014-02-26CommentsMichael Denkowski
2014-02-24refactoringMichael Denkowski
2014-02-24CountExceptLM and CountExceptLex features for online grammar extraction.Michael Denkowski
2013-11-22typos and minor additionsPatrick Simianer
2013-11-10hack to fix compilation problems on mavChris Dyer
2013-11-10fix for c++11Chris Dyer
2013-11-10small fixesChris Dyer
2013-11-10guard against direct includes of tr1Chris Dyer
2013-09-24Support clearning contextMichael Denkowski
2013-09-23One extractor, multiple online contexts.Michael Denkowski
2013-08-26Improve the package structure of pycdecVictor Chahuneau
This change should not break anything, but now you can run: python setup.py build_ext --inplace and use the cleaner: PYTHONPATH=/path/to/cdec/python python -m ...
2012-07-27[python] Move python files to avoid pythonpath conflictsVictor Chahuneau
2012-07-27[python] conversion from cdec.sa.Rule to cdec.TRuleVictor Chahuneau
+ remove configobj dependency + re-structure packages (no more top-level library) + "const" stuff + use __new__ instead of constructor for some objects
2012-07-27[python] Fork of the suffix-array extractor with surface improvementsVictor Chahuneau
Available as the cdec.sa module, with commande-line helpers: python -m cdec.sa.compile -f ... -e ... -a ... -o sa-out/ -c extract.ini python -m cdec.sa.extract -c extract.ini -g grammars-out/ < input.txt > input.sgml + renamed cdec.scfg -> cdec.sa + Python README
2012-07-25Character error rate metricVictor Chahuneau
- [python] cdec.score.CER - Cleanup .gitignore
2012-07-23[python] Evaluation metrics in PythonVictor Chahuneau
2012-07-21[python] Support for grammarsVictor Chahuneau
- Translation rules can now be create programatically - Grammars = list of translation rules can be used for translation - Feature expectations on the hypergraph (inside_outside)
2012-07-01[python] MT evaluationVictor Chahuneau
2012-06-23Support for sparse/dense vectors in the python extensionVictor Chahuneau
- SparseVector, DenseVector - improved Lattice - Lattice translation - Hypergraph reweighting, pruning
2012-06-21Allow SA rule extraction to write to a python bufferVictor Chahuneau
+ very small sa-extract cleanup
2012-06-06Python - Added hypergraph functionnalityVictor Chahuneau
- k-best translations - 1-best, k-best structures - sample derivations from the forest - intersect hypergraph and lattice - lattice
2012-06-04Python module: initial versionVictor Chahuneau