Skip to content

Commit 942b672

Browse files
vkarampudiResponsible ML Infra Team
authored and
Responsible ML Infra Team
committed
Fairness Indicators and Tensorboard Plugin 0.47.0 Release
PiperOrigin-RevId: 718431568
1 parent c03ee55 commit 942b672

File tree

10 files changed

+47
-11
lines changed

10 files changed

+47
-11
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.15.1 | 0.46.0 |
88+
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/RELEASE.md) | nightly (1.x/2.x) | 1.16.1 | 0.47.1 |
89+
|[v0.47.0](https://github.com/tensorflow/fairness-indicators/blob/v0.47.0/RELEASE.md) | 2.16 | 1.16.1 | 0.47.1 |
8990
|[v0.46.0](https://github.com/tensorflow/fairness-indicators/blob/v0.44.0/RELEASE.md) | 2.15 | 1.15.1 | 0.46.0 |
9091
|[v0.44.0](https://github.com/tensorflow/fairness-indicators/blob/v0.44.0/RELEASE.md) | 2.12 | 1.13.0 | 0.44.0 |
9192
|[v0.43.0](https://github.com/tensorflow/fairness-indicators/blob/v0.43.0/RELEASE.md) | 2.11 | 1.12.0 | 0.43.0 |

RELEASE.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,32 @@
22

33
# Current Version (Still in Development)
44

5+
## Major Features and Improvements
6+
7+
## Bug Fixes and Other Changes
8+
9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 0.47.0
14+
515
## Major Features and Improvements
616

717
* Add fairness indicator metrics in the third_party library.
818

919
## Bug Fixes and Other Changes
1020

21+
* Depends on `tensorflow>=2.16,<2.17`.
22+
1123
## Breaking Changes
1224

25+
* N/A
26+
1327
## Deprecations
1428

29+
* N/A
30+
1531
# Version 0.46.0
1632

1733
## 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.47.0.dev'
17+
__version__ = '0.48.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.46.0 \\\n",
98-
" tensorflow-data-validation==1.15.1 \\\n",
99-
" tfx-bsl==1.15.1"
97+
" tensorflow-model-analysis==0.47.1 \\\n",
98+
" tensorflow-data-validation==1.16.1 \\\n",
99+
" tfx-bsl==1.16.1"
100100
]
101101
},
102102
{

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.15.1\n",
100+
"!pip install tensorflow-serving-api==2.16.1\n",
101101
"!pip install tensorflow-model-analysis"
102102
]
103103
},

g3doc/tutorials/Fairness_Indicators_on_TF_Hub_Text_Embeddings.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@
9797
"\n",
9898
"!pip install fairness-indicators \\\n",
9999
" \"absl-py==0.12.0\" \\\n",
100-
" \"pyarrow==10.0.0\" \\\n",
101-
" \"apache-beam==2.47.0\" \\\n",
100+
" \"pyarrow==10.0.1\" \\\n",
101+
" \"apache-beam==2.61.0\" \\\n",
102102
" \"avro-python3==1.9.1\""
103103
]
104104
},

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def select_constraint(default, nightly=None, git_master=None):
3939
'tensorflow>=2.16,<2.17',
4040
'tensorflow-hub>=0.16.1,<1.0.0',
4141
'tensorflow-data-validation>=1.16.1,<2.0.0',
42-
'tensorflow-model-analysis>=0.47.0,<0.48.0',
42+
'tensorflow-model-analysis>=0.47.1,<0.48.0',
4343
'witwidget>=1.4.4,<2',
4444
'protobuf>=3.20.3,<5',
4545
]

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.46.0 |
104+
|[GitHub master](https://github.com/tensorflow/fairness-indicators/blob/master/tensorboard_plugin/README.md) | nightly (2.x) | 0.47.1 |
105+
|[v0.47.0](https://github.com/tensorflow/fairness-indicators/blob/v0.47.0/tensorboard_plugin/README.md) | 2.16.2 | 0.47.1 |
105106
|[v0.46.0](https://github.com/tensorflow/fairness-indicators/blob/v0.46.0/tensorboard_plugin/README.md) | 2.15.0 | 0.46.0 |
106107
|[v0.44.0](https://github.com/tensorflow/fairness-indicators/blob/v0.44.0/tensorboard_plugin/README.md) | 2.12.0 | 0.44.0 |
107108
|[v0.43.0](https://github.com/tensorflow/fairness-indicators/blob/v0.43.0/tensorboard_plugin/README.md) | 2.11.0 | 0.43.0 |

tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,24 @@
1010

1111
## Deprecations
1212

13+
# Version 0.47.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
21+
* Support `tensorflow>=2.16,<2.17`.
22+
23+
## Breaking Changes
24+
25+
* N/A
26+
27+
## Deprecations
28+
29+
* N/A
30+
1331
# Version 0.46.0
1432

1533
## Major Features and Improvements

tensorboard_plugin/tensorboard_plugin_fairness_indicators/version.py

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

1717
# Note that setup.py uses this version.
18-
__version__ = '0.47.0.dev'
18+
__version__ = '0.48.0.dev'

0 commit comments

Comments
 (0)