Skip to content

Commit

Permalink
Fairness Indicators and Fairness Indicators Tensorboard Plugin 0.36.0…
Browse files Browse the repository at this point in the history
… Release

PiperOrigin-RevId: 413980740
  • Loading branch information
Responsible ML Infra authored and Responsible ML Infra Team committed Dec 3, 2021
1 parent d6d4308 commit 0ce0ca9
Show file tree
Hide file tree
Showing 11 changed files with 60 additions and 18 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0 | 0.35.0 |
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/RELEASE.md) | nightly (1.x/2.x) | 1.5.0 | 0.36.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 |
|[v0.33.0](https://github.com/tensorflow/fairness-indicators/blob/v0.33.0/RELEASE.md) | 1.15.2 / 2.5 | 1.2.0 | 0.33.0 |
Expand Down
20 changes: 20 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,26 @@

## Deprecations

# Version 0.36.0

## Major Features and Improvements

* N/A

## Bug Fixes and Other Changes

* Depends on `tensorflow-data-validation>=1.5.0,<1.6.0`.
* Depends on `tensorflow-model-analysis>=0.36,<0.37`.
* Depends on `tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,<3`.

## Breaking Changes

* N/A

## Deprecations

* N/A

# Version 0.35.0

## Major Features and Improvements
Expand Down
2 changes: 1 addition & 1 deletion fairness_indicators/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
"""Contains the version string of Fairness Indicators."""

# Note that setup.py uses this version.
__version__ = '0.36.0.dev'
__version__ = '0.37.0.dev'
6 changes: 3 additions & 3 deletions g3doc/tutorials/Fairness_Indicators_Pandas_Case_Study.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@
"!pip install -q -U pip==20.2\n",
"\n",
"!pip install -q -U \\\n",
" tensorflow-model-analysis==0.35.0 \\\n",
" tensorflow-data-validation==1.4.0 \\\n",
" tfx-bsl==1.4.0"
" tensorflow-model-analysis==0.36.0 \\\n",
" tensorflow-data-validation==1.5.0 \\\n",
" tfx-bsl==1.5.0"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.33\" \\\n",
" \"apache-beam\u003c3,\u003e=2.34\" \\\n",
" \"avro-python3==1.9.1\" \\\n",
" \"pyzmq==17.0.0\"\n"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"!pip install fairness-indicators \\\n",
" \"absl-py==0.12.0\" \\\n",
" \"pyarrow==2.0.0\" \\\n",
" \"apache-beam==2.33.0\" \\\n",
" \"apache-beam==2.34.0\" \\\n",
" \"avro-python3==1.9.1\""
]
},
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.*,<3',
'tensorflow>=1.15.2,!=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.4.0,<1.5.0',
nightly='>=1.5.0.dev',
default='>=1.5.0,<1.6.0',
nightly='>=1.6.0.dev',
git_master='@git+https://github.com/tensorflow/data-validation@master'),
'tensorflow-model-analysis' + select_constraint(
default='>=0.35,<0.36',
nightly='>=0.36.0.dev',
default='>=0.36,<0.37',
nightly='>=0.37.0.dev',
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
'witwidget>=1.4.4,<2',
'protobuf>=3.13,<4',
Expand Down
3 changes: 2 additions & 1 deletion tensorboard_plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.35.0 |
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/tensorboard_plugin/README.md) | nightly (2.x) | 0.36.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 |
|[v0.33.0](https://github.com/tensorflow/fairness-indicators/blob/v0.33.0/tensorboard_plugin/README.md) | 2.5.0 | 0.33.0 |
Expand Down
8 changes: 4 additions & 4 deletions tensorboard_plugin/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ def select_constraint(default, nightly=None, git_master=None):

REQUIRED_PACKAGES = [
'protobuf>=3.13,<4',
'tensorboard>=2.6.0,<3',
'tensorflow>=2.6.0,<3',
'tensorboard>=2.7.0,<3',
'tensorflow>=2.7.0,<3',
'tensorflow-model-analysis' + select_constraint(
default='>=0.35,<0.36',
nightly='>=0.36.0.dev',
default='>=0.36,<0.37',
nightly='>=0.37.0.dev',
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,26 @@

## Deprecations

# Version 0.36.0

## Major Features and Improvements

* N/A

## Bug Fixes and Other Changes

* Depends on `tensorflow>=2.7.0,<3`.
* Depends on `tensorboard>=2.7.0,<3`.
* Depends on `tensorflow-model-analysis>=0.36,<0.37`.

## Breaking Changes

* N/A

## Deprecations

* N/A

# Version 0.35.0

## Major Features and Improvements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"""Contains the version string of Fairness Indicators Tensorboard Plugin."""

# Note that setup.py uses this version.
__version__ = '0.36.0.dev'
__version__ = '0.37.0.dev'

0 comments on commit 0ce0ca9

Please sign in to comment.