Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: SamuelLarkin/sockeye

Tags

1.18.35

Toggle 1.18.35's commit message
Make rouge metrics available in sockeye.evaluate CLI (awslabs#471)

* Make rouge metrics available in sockeye.evaluate CLI

* Add chrf to optimizable metrics

* fix

* compute rouge in system tests

* fix

1.18.28

Toggle 1.18.28's commit message
Fixing the pyyaml version. (awslabs#458)

The new pyyaml version is introducing some issues, which we should fix. For now let's depend on the old version to unblock Travis.

1.18.23

Toggle 1.18.23's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix for transformer-with-conv-embed encoder. (awslabs#434)

* Fix for transformer-with-conv-embed encoder.

* changelog

* version fix

1.18.22

Toggle 1.18.22's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix: Word based batching memory with longer source sentences. (awslab…

…s#430)

* Fix: Word based batching memory with longer source sentences.

* comment clarification.

* typos

1.18.21

Toggle 1.18.21's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Refactor beam search to use gluon hybrid blocks (awslabs#425)

This refactors beam search to group fixed-size operations in beam search into cached ops through Gluon HybridBlocks.
My testing showed ~3% speed improvement. Not much, but consistent.

Another change that is included here is to not use columns from `sequences` to pass into the decoder step module, but use `best_word_indices` from the previous iteration. NDArray indexing seems expensive and ideally we should aim for avoiding all indexing ops in an iteration.

1.18.20

Toggle 1.18.20's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Allow specifying different transformer parameters for encoder and dec…

…oder (awslabs#419)

1.18.17

Toggle 1.18.17's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update to MXNet 1.2 (awslabs#388)

This PR updates Sockeye to MXNet 1.2 which was released May 21st 2018.

Core change to Sockeye is the use of the new LayerNormalization operator which reduces GPU memory usage. It uses the same set of parameters existing models are compatible, but running sockeye now requires mxnet 1.2.

1.18.15

Toggle 1.18.15's commit message
Added hard lexical constraints (Post & Vilar, NAACL 2018) (awslabs#349)

* Added hard lexical constraints (Post & Vilar, NAACL 2018)

This commit adds hard lexical constraints as described in Post & Vilar, 
Fast Lexically Constrained Decoding with Dynamic Beam Allocation for Neural Machine Translation (NAACL 2018).
Hard lexical constraints are words or phrases that must appear in the translation output.

To use this feature, for a particular input sentences, create a (1-line) JSON object of the following form:
```
    { "text": "Einer soll ein hoch@@ rangi@@ ges Mitglied aus Berlin gewesen sein .",
      "constraints": ["is said to", "powerful"] }
```

You then need to pass the JSON input flag (`--json-input`) to `sockeye.translate`.

1.18.13

Toggle 1.18.13's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix logic with training resumption (awslabs#404)

* Fix logic with training resumption

* fix

1.18.10

Toggle 1.18.10's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Remove overly restrictive check to support early stopping with BLEU (a…

…wslabs#384)

* Remove overly restrictive check to support early stopping with BLEU

Removes an overly restrictive check introduced with the train refactoring.
Re-allows early stopping w.r.t BLEU.

* changelog