Skip to content

Commit 4c6bccb

Browse files
authored
[RELEASE]: v0.9.4 (#1566)
1 parent dd24000 commit 4c6bccb

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,27 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
8-
## [0.9.4]
7+
## [0.9.4] - 2020-04-05
98
### [Breaking Changes]
9+
10+
* PR #1535: Refactor baseline model imports in snorkel.labeling.model
11+
* Now, from `from snorkel.labeling import MajorityLabelVoter, LabelModel`
12+
can be expressed `from snorkel.labeling.model import MajorityLabelVoter, LabelModel`
13+
14+
1015
### [Added]
16+
17+
* PR #1533: Allow option to save optimizer state in Trainer
18+
* PR #1523: Add GPU option for spaCy preprocessor
19+
1120
### [Changed]
12-
### [Deprecated]
13-
### [Removed]
1421

22+
* PR #1540: Fix squeeze bug in `to_int_label_array` function
23+
* PR #1520: Fix error bucket documentation in snorkel.analysis.error_analysis
24+
25+
### [Contributors]
26+
27+
Thanks to @rjurney, @ptrcklv for recent contributions!
1528

1629
## [0.9.3] - 2019-11-11
1730

snorkel/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
_MAJOR = "0"
22
_MINOR = "9"
3-
_REVISION = "4+dev"
3+
_REVISION = "4"
44

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

0 commit comments

Comments
 (0)