Skip to content

Commit 3994a17

Browse files
dhruvesh09Responsible ML Infra Team
authored andcommitted
Fairness Indicators and Fairness Indicators Tensorboard Plugin 0.34.0 Release
PiperOrigin-RevId: 398026798
1 parent bdd8a4f commit 3994a17

File tree

12 files changed

+55
-17
lines changed

12 files changed

+55
-17
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ other *untested* combinations may also work.
8585

8686
|fairness-indicators | tensorflow | tensorflow-data-validation | tensorflow-model-analysis |
8787
|-------------------------------------------------------------------------------------------|--------------------|----------------------------|---------------------------|
88-
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/RELEASE.md) | nightly (1.x/2.x) | 1.2.0 | 0.33.0 |
88+
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/RELEASE.md) | nightly (1.x/2.x) | 1.3.0 | 0.34.0 |
89+
|[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 |
8990
|[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 |
9091
|[v0.30.0](https://github.com/tensorflow/fairness-indicators/blob/v0.30.0/RELEASE.md) | 1.15.2 / 2.4 | 0.30.0 | 0.30.0 |
9192
|[v0.29.0](https://github.com/tensorflow/fairness-indicators/blob/v0.29.0/RELEASE.md) | 1.15.2 / 2.4 | 0.29.0 | 0.29.0 |

RELEASE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,30 @@
66

77
## Bug Fixes and Other Changes
88

9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 0.34.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
921
* Depends on `tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,<3`.
22+
* Depends on `tensorflow-data-validation>=1.2.0,<1.3.0`.
23+
* Depends on `tensorflow-model-analysis>=0.33,<0.34`.
1024

1125
## Breaking Changes
1226

27+
* N/A
28+
1329
## Deprecations
1430

31+
* N/A
32+
1533
# Version 0.33.0
1634

1735
## Major Features and Improvements

fairness_indicators/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
"""Contains the version string of Fairness Indicators."""
1515

1616
# Note that setup.py uses this version.
17-
__version__ = '0.34.0.dev'
17+
__version__ = '0.35.0.dev'

g3doc/tutorials/Fairness_Indicators_Pandas_Case_Study.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@
9494
"!pip install -q -U pip==20.2\n",
9595
"\n",
9696
"!pip install -q -U \\\n",
97-
" tensorflow-model-analysis==0.33.0 \\\n",
98-
" tensorflow-data-validation==1.2.0 \\\n",
99-
" tfx-bsl==1.2.0"
97+
" tensorflow-model-analysis==0.34.0 \\\n",
98+
" tensorflow-data-validation==1.3.0 \\\n",
99+
" tfx-bsl==1.3.0"
100100
]
101101
},
102102
{

g3doc/tutorials/Fairness_Indicators_TFCO_CelebA_Case_Study.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
"!pip install -q tensorflow-datasets tensorflow\n",
106106
"!pip install fairness-indicators \\\n",
107107
" \"absl-py==0.12.0\" \\\n",
108-
" \"apache-beam\u003c3,\u003e=2.31\" \\\n",
108+
" \"apache-beam\u003c3,\u003e=2.32\" \\\n",
109109
" \"avro-python3==1.9.1\" \\\n",
110110
" \"pyzmq==17.0.0\"\n"
111111
]

g3doc/tutorials/Fairness_Indicators_TensorBoard_Plugin_Example_Colab.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"!pip install fairness_indicators 'absl-py\u003c0.9,\u003e=0.7'\n",
9898
"!pip install google-api-python-client==1.8.3\n",
9999
"!pip install tensorboard-plugin-fairness-indicators\n",
100-
"!pip install tensorflow-serving-api==2.5.1"
100+
"!pip install tensorflow-serving-api==2.6.0"
101101
]
102102
},
103103
{

g3doc/tutorials/Fairness_Indicators_on_TF_Hub_Text_Embeddings.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"!pip install fairness-indicators \\\n",
9999
" \"absl-py==0.12.0\" \\\n",
100100
" \"pyarrow==2.0.0\" \\\n",
101-
" \"apache-beam==2.31.0\" \\\n",
101+
" \"apache-beam==2.32.0\" \\\n",
102102
" \"avro-python3==1.9.1\""
103103
]
104104
},

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ def select_constraint(default, nightly=None, git_master=None):
4141
'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,<3',
4242
'tensorflow-hub>=0.8.0,<1.0.0',
4343
'tensorflow-data-validation' + select_constraint(
44-
default='>=1.2.0,<1.3.0',
45-
nightly='>=1.3.0.dev',
44+
default='>=1.3.0,<1.4.0',
45+
nightly='>=1.4.0.dev',
4646
git_master='@git+https://github.com/tensorflow/data-validation@master'),
4747
'tensorflow-model-analysis' + select_constraint(
48-
default='>=0.33,<0.34',
49-
nightly='>=0.34.0.dev',
48+
default='>=0.34,<0.35',
49+
nightly='>=0.35.0.dev',
5050
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
5151
'witwidget>=1.4.4,<2',
5252
'protobuf>=3.13,<4',

tensorboard_plugin/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,8 @@ other *untested* combinations may also work.
101101
102102
|tensorboard-pluginn | tensorflow | tensorflow-model-analysis |
103103
|-------------------------------------------------------------------------------------------------------------|---------------|---------------------------|
104-
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/tensorboard_plugin/README.md) | nightly (2.x) | 0.33.0 |
104+
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/tensorboard_plugin/README.md) | nightly (2.x) | 0.34.0 |
105+
|[v0.34.0](https://github.com/tensorflow/fairness-indicators/blob/v0.34.0/tensorboard_plugin/README.md) | 2.6.0 | 0.34.0 |
105106
|[v0.33.0](https://github.com/tensorflow/fairness-indicators/blob/v0.33.0/tensorboard_plugin/README.md) | 2.5.0 | 0.33.0 |
106107
|[v0.30.0](https://github.com/tensorflow/fairness-indicators/blob/v0.30.0/tensorboard_plugin/README.md) | 2.4.0 | 0.30.0 |
107108
|[v0.29.0](https://github.com/tensorflow/fairness-indicators/blob/v0.29.0/tensorboard_plugin/README.md) | 2.4.0 | 0.29.0 |

tensorboard_plugin/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ def select_constraint(default, nightly=None, git_master=None):
4343

4444
REQUIRED_PACKAGES = [
4545
'protobuf>=3.13,<4',
46-
'tensorboard>=2.5.0,<3',
46+
'tensorboard>=2.6.0,<3',
4747
'tensorflow>=2.6.0,<3',
4848
'tensorflow-model-analysis' + select_constraint(
49-
default='>=0.33,<0.34',
50-
nightly='>=0.34.0.dev',
49+
default='>=0.34,<0.35',
50+
nightly='>=0.35.0.dev',
5151
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
5252
]
5353

0 commit comments

Comments
 (0)