Skip to content

Commit

Permalink
Bump version: 0.0.3 → 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fjsj committed Apr 20, 2021
1 parent 1c66289 commit 304ad68
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

...
## 0.0.4 (2021-04-20)

### Fixed

- Fixed `field_mask` on `FieldsEmbedNet` by clamping values to 1. Before, this mask was multiplying field embeddings by the field length in tokens. Now, the correct behavior is implemented: multiply by 0 the empty fields, and by 1 the non-empty fields. This was only causing a minor decrease in F1 score, though.

## 0.0.3 (2021-04-20)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ BibTeX entry:
title = {{Entity Embed}: Scalable Entity Resolution using Approximate Nearest Neighbors.},
author = {Juvenal, Flávio and Vieira, Renato},
url = {https://github.com/vintasoftware/entity-embed},
version = {0.0.3},
version = {0.0.4},
date = {2021-04-20},
year = {2021}
}
Expand Down
2 changes: 1 addition & 1 deletion entity_embed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

__author__ = "Flávio Juvenal (Vinta Software)"
__email__ = "flavio@vinta.com.br"
__version__ = "0.0.3"
__version__ = "0.0.4"

# Good practice: https://docs.python-guide.org/writing/logging/#logging-in-a-library
logging.getLogger(__name__).addHandler(logging.NullHandler())
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.3
current_version = 0.0.4
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@
name="entity-embed",
packages=find_packages(include=["entity_embed", "entity_embed.*"]),
url="https://github.com/vintasoftware/entity-embed",
version="0.0.3",
version="0.0.4",
zip_safe=False,
)

0 comments on commit 304ad68

Please sign in to comment.