From c21dad4feff187cdec041a564193ea7b619b8906 Mon Sep 17 00:00:00 2001 From: Neural-Link Team Date: Mon, 17 Aug 2020 17:08:25 -0700 Subject: [PATCH] Creates the Neural Structured Learning (NSL) 1.3.1 release. PiperOrigin-RevId: 327130367 --- RELEASE.md | 19 +++++++++++++++++++ neural_structured_learning/version.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index 0319420..3709a4a 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,22 @@ +# Release 1.3.1 + +## Major Features and Improvements + +None. + +## Bug Fixes and Other Changes + +* Fixed the NSL graph builder to ignore `lsh_rounds` when `lsh_splits` < 1. By + default, the prior version of the graph builder would repeat the work twice + by default. In addition, the default value for `lsh_rounds` has been changed + from 2 to 1. +* Updated the NSL IMDB tutorial to use the new LSH support when building the + graph, thereby speeding up the graph building time by ~5x. + +## Thanks to our Contributors + +This release contains contributions from many people at Google. + # Release 1.3.0 ## Major Features and Improvements diff --git a/neural_structured_learning/version.py b/neural_structured_learning/version.py index 0468373..bb1c6d1 100644 --- a/neural_structured_learning/version.py +++ b/neural_structured_learning/version.py @@ -16,7 +16,7 @@ # We follow Semantic Versioning (https://semver.org/). _MAJOR_VERSION = '1' _MINOR_VERSION = '3' -_PATCH_VERSION = '0' +_PATCH_VERSION = '1' _VERSION_SUFFIX = ''