Skip to content
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.

Commit

Permalink
Prepare for release v2.0.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkgr committed Jan 22, 2021
1 parent 07fc94e commit 4d72efd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 14 deletions.
19 changes: 8 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased (2.0 branch)

### Added

- Dataset readers, models, metrics, and training configs for VQAv2, GQA, and Visual Entailment

### Fixed

- Fixed `training_configs/pair_classification/bimpm.jsonnet` and `training_configs/rc/dialog_qa.jsonnet`
to work with new data loading API.

## Unreleased (1.x branch)
- Fixed the potential for a dead-lock when training the `TransformerQA` model on multiple GPUs
when nodes receive different sized batches.
- Fixed BART. This implementation had some major bugs in it that caused poor performance during prediction.

### Removed

- Moving `ModelCard` and `TaskCard` abstractions out of the models repository.

### Changed

- 'master' branch renamed to 'main'
- `master` branch renamed to `main`
- `SquadEmAndF1` metric can now also accept a batch of predictions and corresponding answers (instead of a single one)
in the form of list (for each).

### Fixed

- Fixed the potential for a dead-lock when training the `TransformerQA` model on multiple GPUs
when nodes receive different sized batches.

### Fixed

- Fixed BART. This implementation had some major bugs in it that caused poor performance during prediction.

## [v1.3.0](https://github.com/allenai/allennlp-models/releases/tag/v1.2.2) - 2020-12-15

Expand Down
6 changes: 3 additions & 3 deletions allennlp_models/version.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import os

_MAJOR = "1"
_MINOR = "3"
_MAJOR = "2"
_MINOR = "0"
_PATCH = "0"
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = os.environ.get("ALLENNLP_MODELS_VERSION_SUFFIX", "")
_SUFFIX = os.environ.get("ALLENNLP_MODELS_VERSION_SUFFIX", "rc1")

VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR)
VERSION = "{0}.{1}.{2}{3}".format(_MAJOR, _MINOR, _PATCH, _SUFFIX)

0 comments on commit 4d72efd

Please sign in to comment.