From c51cfbbc43e6f766fbea0897e0d32e2789cd3b72 Mon Sep 17 00:00:00 2001 From: Sanjay Kumar Chotakur Date: Wed, 2 Feb 2022 11:52:28 -0800 Subject: [PATCH] Fairness Indicators and Tensorboard Plugin 0.37.0 Release PiperOrigin-RevId: 425941015 --- README.md | 3 ++- RELEASE.md | 19 +++++++++++++++++++ fairness_indicators/version.py | 2 +- ...airness_Indicators_Pandas_Case_Study.ipynb | 6 +++--- ...ss_Indicators_TFCO_CelebA_Case_Study.ipynb | 2 +- ...Indicators_on_TF_Hub_Text_Embeddings.ipynb | 2 +- setup.py | 10 +++++----- tensorboard_plugin/README.md | 3 ++- tensorboard_plugin/setup.py | 4 ++-- .../RELEASE.md | 18 ++++++++++++++++++ .../version.py | 2 +- 11 files changed, 55 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index dd0171c5..9e0725fe 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,8 @@ other *untested* combinations may also work. |fairness-indicators | tensorflow | tensorflow-data-validation | tensorflow-model-analysis | |-------------------------------------------------------------------------------------------|--------------------|----------------------------|---------------------------| -|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/RELEASE.md) | nightly (1.x/2.x) | 1.5.0 | 0.36.0 | +|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/RELEASE.md) | nightly (1.x/2.x) | 1.6.0 | 0.37.0 | +|[v0.37.0](https://github.com/tensorflow/fairness-indicators/blob/v0.37.0/RELEASE.md) | 1.15.5 / 2.7 | 1.6.0 | 0.37.0 | |[v0.36.0](https://github.com/tensorflow/fairness-indicators/blob/v0.36.0/RELEASE.md) | 1.15.2 / 2.7 | 1.5.0 | 0.36.0 | |[v0.35.0](https://github.com/tensorflow/fairness-indicators/blob/v0.35.0/RELEASE.md) | 1.15.2 / 2.6 | 1.4.0 | 0.35.0 | |[v0.34.0](https://github.com/tensorflow/fairness-indicators/blob/v0.34.0/RELEASE.md) | 1.15.2 / 2.6 | 1.3.0 | 0.34.0 | diff --git a/RELEASE.md b/RELEASE.md index 90ed25d3..a49db895 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -6,12 +6,31 @@ ## Bug Fixes and Other Changes +## Breaking Changes + +## Deprecations + +# Version 0.37.0 + +## Major Features and Improvements + +* N/A + +## Bug Fixes and Other Changes + * Fix Fairness Indicators UI bug with overlapping charts when comparing EvalResults +* Depends on `tensorflow-data-validation>=1.6.0,<1.7.0`. +* Depends on `tensorflow-model-analysis>=0.37,<0.38`. +* Depends on `tensorflow>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,<3`. ## Breaking Changes +* N/A + ## Deprecations +* N/A + # Version 0.36.0 ## Major Features and Improvements diff --git a/fairness_indicators/version.py b/fairness_indicators/version.py index 6d8c2d42..7845592d 100644 --- a/fairness_indicators/version.py +++ b/fairness_indicators/version.py @@ -14,4 +14,4 @@ """Contains the version string of Fairness Indicators.""" # Note that setup.py uses this version. -__version__ = '0.37.0.dev' +__version__ = '0.38.0.dev' diff --git a/g3doc/tutorials/Fairness_Indicators_Pandas_Case_Study.ipynb b/g3doc/tutorials/Fairness_Indicators_Pandas_Case_Study.ipynb index 7209400e..c8e05565 100644 --- a/g3doc/tutorials/Fairness_Indicators_Pandas_Case_Study.ipynb +++ b/g3doc/tutorials/Fairness_Indicators_Pandas_Case_Study.ipynb @@ -94,9 +94,9 @@ "!pip install -q -U pip==20.2\n", "\n", "!pip install -q -U \\\n", - " tensorflow-model-analysis==0.36.0 \\\n", - " tensorflow-data-validation==1.5.0 \\\n", - " tfx-bsl==1.5.0" + " tensorflow-model-analysis==0.37.0 \\\n", + " tensorflow-data-validation==1.6.0 \\\n", + " tfx-bsl==1.6.0" ] }, { diff --git a/g3doc/tutorials/Fairness_Indicators_TFCO_CelebA_Case_Study.ipynb b/g3doc/tutorials/Fairness_Indicators_TFCO_CelebA_Case_Study.ipynb index fbc4fd47..226e4a22 100644 --- a/g3doc/tutorials/Fairness_Indicators_TFCO_CelebA_Case_Study.ipynb +++ b/g3doc/tutorials/Fairness_Indicators_TFCO_CelebA_Case_Study.ipynb @@ -105,7 +105,7 @@ "!pip install -q tensorflow-datasets tensorflow\n", "!pip install fairness-indicators \\\n", " \"absl-py==0.12.0\" \\\n", - " \"apache-beam\u003c3,\u003e=2.34\" \\\n", + " \"apache-beam\u003c3,\u003e=2.35\" \\\n", " \"avro-python3==1.9.1\" \\\n", " \"pyzmq==17.0.0\"\n" ] diff --git a/g3doc/tutorials/Fairness_Indicators_on_TF_Hub_Text_Embeddings.ipynb b/g3doc/tutorials/Fairness_Indicators_on_TF_Hub_Text_Embeddings.ipynb index a7df8433..280d0cfe 100644 --- a/g3doc/tutorials/Fairness_Indicators_on_TF_Hub_Text_Embeddings.ipynb +++ b/g3doc/tutorials/Fairness_Indicators_on_TF_Hub_Text_Embeddings.ipynb @@ -98,7 +98,7 @@ "!pip install fairness-indicators \\\n", " \"absl-py==0.12.0\" \\\n", " \"pyarrow==2.0.0\" \\\n", - " \"apache-beam==2.34.0\" \\\n", + " \"apache-beam==2.35.0\" \\\n", " \"avro-python3==1.9.1\"" ] }, diff --git a/setup.py b/setup.py index bd009d26..84d386da 100644 --- a/setup.py +++ b/setup.py @@ -38,15 +38,15 @@ def select_constraint(default, nightly=None, git_master=None): return default REQUIRED_PACKAGES = [ - 'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,<3', + 'tensorflow>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,<3', 'tensorflow-hub>=0.8.0,<1.0.0', 'tensorflow-data-validation' + select_constraint( - default='>=1.5.0,<1.6.0', - nightly='>=1.6.0.dev', + default='>=1.6.0,<1.7.0', + nightly='>=1.7.0.dev', git_master='@git+https://github.com/tensorflow/data-validation@master'), 'tensorflow-model-analysis' + select_constraint( - default='>=0.36,<0.37', - nightly='>=0.37.0.dev', + default='>=0.37,<0.38', + nightly='>=0.38.0.dev', git_master='@git+https://github.com/tensorflow/model-analysis@master'), 'witwidget>=1.4.4,<2', 'protobuf>=3.13,<4', diff --git a/tensorboard_plugin/README.md b/tensorboard_plugin/README.md index 6142e075..ca6373a8 100644 --- a/tensorboard_plugin/README.md +++ b/tensorboard_plugin/README.md @@ -101,7 +101,8 @@ other *untested* combinations may also work. |tensorboard-pluginn | tensorflow | tensorflow-model-analysis | |-------------------------------------------------------------------------------------------------------------|---------------|---------------------------| -|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/tensorboard_plugin/README.md) | nightly (2.x) | 0.36.0 | +|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/tensorboard_plugin/README.md) | nightly (2.x) | 0.37.0 | +|[v0.37.0](https://github.com/tensorflow/fairness-indicators/blob/v0.37.0/tensorboard_plugin/README.md) | 2.7.0 | 0.37.0 | |[v0.36.0](https://github.com/tensorflow/fairness-indicators/blob/v0.36.0/tensorboard_plugin/README.md) | 2.7.0 | 0.36.0 | |[v0.35.0](https://github.com/tensorflow/fairness-indicators/blob/v0.35.0/tensorboard_plugin/README.md) | 2.6.0 | 0.35.0 | |[v0.34.0](https://github.com/tensorflow/fairness-indicators/blob/v0.34.0/tensorboard_plugin/README.md) | 2.6.0 | 0.34.0 | diff --git a/tensorboard_plugin/setup.py b/tensorboard_plugin/setup.py index 84b9ccc4..ee20d035 100644 --- a/tensorboard_plugin/setup.py +++ b/tensorboard_plugin/setup.py @@ -46,8 +46,8 @@ def select_constraint(default, nightly=None, git_master=None): 'tensorboard>=2.7.0,<3', 'tensorflow>=2.7.0,<3', 'tensorflow-model-analysis' + select_constraint( - default='>=0.36,<0.37', - nightly='>=0.37.0.dev', + default='>=0.37,<0.38', + nightly='>=0.38.0.dev', git_master='@git+https://github.com/tensorflow/model-analysis@master'), ] diff --git a/tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md b/tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md index 5cce0637..022e09ef 100644 --- a/tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md +++ b/tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md @@ -10,6 +10,24 @@ ## Deprecations +# Version 0.37.0 + +## Major Features and Improvements + +* N/A + +## Bug Fixes and Other Changes + +* N/A + +## Breaking Changes + +* Depends on `tensorflow-model-analysis>=0.37,<0.38`. + +## Deprecations + +* N/A + # Version 0.36.0 ## Major Features and Improvements diff --git a/tensorboard_plugin/tensorboard_plugin_fairness_indicators/version.py b/tensorboard_plugin/tensorboard_plugin_fairness_indicators/version.py index 9d30e194..54abe16f 100644 --- a/tensorboard_plugin/tensorboard_plugin_fairness_indicators/version.py +++ b/tensorboard_plugin/tensorboard_plugin_fairness_indicators/version.py @@ -15,4 +15,4 @@ """Contains the version string of Fairness Indicators Tensorboard Plugin.""" # Note that setup.py uses this version. -__version__ = '0.37.0.dev' +__version__ = '0.38.0.dev'