update CHANGELOG and VERSION

This commit is contained in:
Marcin Junczys-Dowmunt 2021-11-24 18:42:14 -08:00
parent 8b8d1b11e2
commit bbc673c50f
2 changed files with 6 additions and 2 deletions

View File

@ -9,7 +9,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
### Added
- Adds option --add-lsh to marian-conv which allows the LSH to be memory-mapped.
- Parallelized data reading with e.g. `--data-threads 8`
- Top-k sampling during decoding with e.g. `--output-sampling topk 10`
- Improved mixed precision training with `--fp16`
- Set FFN width in decoder independently from encoder with e.g. `--transformer-dim-ffn 4096 --transformer-decoder-dim-ffn 2048`
- Adds option `--add-lsh` to marian-conv which allows the LSH to be memory-mapped.
- Early stopping based on first, all, or any validation metrics via `--early-stopping-on`
- Compute 8.6 support if using CUDA>=11.1
- Support for RMSNorm as drop-in replace for LayerNorm from `Biao Zhang; Rico Sennrich (2019). Root Mean Square Layer Normalization`. Enabled in Transformer model via `--transformer-postprocess dar` instead of `dan`.

View File

@ -1,2 +1,2 @@
v1.10.24
v1.10.42