summaryrefslogtreecommitdiff
path: root/python
AgeCommit message (Collapse)Author
2012-12-15enable kenlm compressionChris Dyer
2012-12-13Enable loose phrase extraction parameterVictor Chahuneau
(default is still tight) use --loose when compiling corpus or tight_phrases = False in config
2012-11-18Merge branch 'master' of github.com:redpony/cdecChris Dyer
2012-11-18add another interfaceChris Dyer
2012-11-18Add Python testsVictor Chahuneau
2012-11-18fix python pointers into training libChris Dyer
2012-11-14deal with referencesChris Dyer
2012-10-25fix python buildChris Dyer
2012-10-16[python] Fix string problems + Documentation.Victor Chahuneau
- use bytes instead of char* - add some basic docstrings to functions/constructors
2012-10-02note to selfChris Dyer
2012-09-06add FeatureContext.input_spanAdam Lopez
2012-09-06[cdec.sa] Allow sentence annotation and initial configurationVictor Chahuneau
2012-09-06[cdec.sa] Fix API to make everyone happyVictor Chahuneau
2012-09-06[cdec.sa] Fix the list of matching training source sentenceVictor Chahuneau
2012-09-06[cdec.sa] Make list of word ids <-> sentence string mapping easyVictor Chahuneau
2012-09-06Make Data_Array.data accessible via getterAdam Lopez
2012-09-06MergeAdam Lopez
2012-09-05[pycdec.sa] Fix the -f option specificationVictor Chahuneau
2012-09-05Revert to the "old style" pair count...Victor Chahuneau
+ API naming fixes + Multiple feature definition files can be passed to the extractor
2012-09-05Pass F, E texts to featuresAdam Lopez
2012-09-05Change FeatureContext.input_span to return slice indicesAdam Lopez
2012-09-05Fix bug in initialization of FeatureContext.input_spanAdam Lopez
2012-09-05Extractor no longer complains if feature definitions aren't suppliedAdam Lopez
2012-09-05Expose new feature extraction APIVictor Chahuneau
2012-09-05Merge alopez/context-featuresVictor Chahuneau
2012-09-04Multi-processing grammar extractionVictor Chahuneau
+ various surface fixes
2012-09-03Support Python 2.6Victor Chahuneau
2012-08-14[cdec.sa] Explicit feature names in grammar extractor outputVictor Chahuneau
+ sparse features in extractor + hg.intersect(string) + basestring = str|unicode
2012-08-11[python] fix for new dict APIVictor Chahuneau
- TDConvert returns a string - various c_str fixes (make copies) - cleanup .gitignore
2012-08-10autogenerate setup.pyChris Dyer
2012-08-10[python] Parallel decodingVictor Chahuneau
2012-08-10[python] Examples directory including RampionVictor Chahuneau
2012-08-08[python] Get rid of the GILVictor Chahuneau
2012-08-08random sampling trees fixChris Dyer
2012-08-07sample trees from hypergraphsChris Dyer
2012-08-03[python] Fix some details in cdec.sa toolsVictor Chahuneau
2012-07-30[python] monolingual grammarsVictor Chahuneau
2012-07-28[python] Fix grammar non-terminal memory bugVictor Chahuneau
2012-07-28[python] Suffix array compiler can read bitext (-b)Victor Chahuneau
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-20enable programmatic setting of grammar objects, cleanup of grammar handlingChris Dyer
2012-07-11[python] Direct hypergraph accessVictor Chahuneau
- small API changes (*_trees methods) - decoder config can now passed as arguments
2012-07-05[python] Add convenience methodsVictor Chahuneau
2012-07-05Fix for pow(double, double)Victor Chahuneau
+ [python] check bounds for candidate set
2012-07-02[python] Explicit candidate set; memory leak fixesVictor Chahuneau