Skip to content

Commit

Permalink
[RELEASE]: v0.9.4 (#1566)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentschen committed Apr 5, 2020
1 parent dd24000 commit 4c6bccb
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
21 changes: 17 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,27 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.9.4]
## [0.9.4] - 2020-04-05
### [Breaking Changes]

* PR #1535: Refactor baseline model imports in snorkel.labeling.model
* Now, from `from snorkel.labeling import MajorityLabelVoter, LabelModel`
can be expressed `from snorkel.labeling.model import MajorityLabelVoter, LabelModel`


### [Added]

* PR #1533: Allow option to save optimizer state in Trainer
* PR #1523: Add GPU option for spaCy preprocessor

### [Changed]
### [Deprecated]
### [Removed]

* PR #1540: Fix squeeze bug in `to_int_label_array` function
* PR #1520: Fix error bucket documentation in snorkel.analysis.error_analysis

### [Contributors]

Thanks to @rjurney, @ptrcklv for recent contributions!

## [0.9.3] - 2019-11-11

Expand Down
2 changes: 1 addition & 1 deletion snorkel/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
_MAJOR = "0"
_MINOR = "9"
_REVISION = "4+dev"
_REVISION = "4"

VERSION_SHORT = f"{_MAJOR}.{_MINOR}"
VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}"

0 comments on commit 4c6bccb

Please sign in to comment.