Austin Matthews
Austin Matthews
The following should be allowed, but instead gives "ERROR: Illegal character at start of branch reference name", due to the space between "Branch:" and "pathA". task First > out ::...
The latest version of multeval tries to read a file called "./constants" to determine its version number. When multeval is executed from a location other than its own folder, this...
We updated cdec to allow a sparse vector of features rather than a single cost on each edge. PyCdec relies on storing edges in tuples, and while a double was...
When we call run_experiments and pass it a non-existent path for the YAML file it fails with the following error message: `TypeError: Top level of config file must be a...
When passing e.g. in an eval task: ``` - !AccuracyEvalTask eval_metrics: bleu src_file: mt02.zh ref_file: mt02.en hyp_file: ~/output/hyps ``` This will run inference and correctly compute the BLEU score, but...
This PR enables stative attenders, and contains a sample implementation of "Modeling Coverage for Neural Machine Translation" ([Tu et al. 2016](http://www.aclweb.org/anthology/P16-1008)).
Right now all the attenders are state-free, but there exist some attenders that require some concept of state. The most obvious one are things that involve [coverage](https://arxiv.org/pdf/1601.04811.pdf). I propose that...
Right now we have two conflicting schemes for choosing which files certain classes belong in. On the one hand we have the `modelparts` directory, with its decoders, embedders, and attenders....