Skip to content

Commit fcb3f5f

Browse files
dhruvesh09tf-model-analysis-team
authored and
tf-model-analysis-team
committed
TFMA 0.28.0 Release
PiperOrigin-RevId: 359081973
1 parent 6e6a97f commit fcb3f5f

File tree

6 files changed

+30
-11
lines changed

6 files changed

+30
-11
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@ combinations may also work.
167167

168168
|tensorflow-model-analysis |apache-beam[gcp]|pyarrow |tensorflow |tensorflow-metadata |tfx-bsl |
169169
|------------------------------------------------------------------------------------ |----------------|----------|-------------------|--------------------|----------|
170-
|[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.27.0 | 2.0.0 | nightly (1.x/2.x) | 0.27.0 | 0.27.0 |
170+
|[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.28.0 | 2.0.0 | nightly (1.x/2.x) | 0.28.0 | 0.28.0 |
171+
|[0.28.0](https://github.com/tensorflow/model-analysis/blob/v0.28.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.28.0 | 0.28.0 |
171172
|[0.27.0](https://github.com/tensorflow/model-analysis/blob/v0.27.0/RELEASE.md) | 2.27.0 | 2.0.0 | 1.15 / 2.4 | 0.27.0 | 0.27.0 |
172173
|[0.26.0](https://github.com/tensorflow/model-analysis/blob/v0.26.0/RELEASE.md) | 2.25.0 | 0.17.0 | 1.15 / 2.3 | 0.26.0 | 0.26.0 |
173174
|[0.25.0](https://github.com/tensorflow/model-analysis/blob/v0.25.0/RELEASE.md) | 2.25.0 | 0.17.0 | 1.15 / 2.3 | 0.25.0 | 0.25.0 |

RELEASE.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,38 @@
44

55
## Major Features and Improvements
66

7+
## Bug fixes and other Changes
8+
9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 0.28.0
14+
15+
## Major Features and Improvements
16+
717
* Add a new base computation for binary confusion matrix (other than based on
818
calibration histogram). It also provides a sample of examples for the
919
confusion matrix.
1020
* Adding two new metrics - Flip Count and Flip Rate to evaluate Counterfactual
1121
Fairness.
1222

13-
## Bug fixes and other changes
23+
## Bug fixes and other Changes
1424

1525
* Fixed division by zero error for diff metrics.
26+
* Depends on `apache-beam[gcp]>=2.28,<3`.
1627
* Depends on `numpy>=1.16,<1.20`.
28+
* Depends on `tensorflow-metadata>=0.28.0,<0.29.0`.
29+
* Depends on `tfx-bsl>=0.28.0,<0.29.0`.
1730

18-
## Breaking changes
31+
## Breaking Changes
32+
33+
* N/A
1934

2035
## Deprecations
2136

37+
* N/A
38+
2239
# Version 0.27.0
2340

2441
## Major Features and Improvements

g3doc/install.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,8 @@ combinations may also work.
152152

153153
tensorflow-model-analysis | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl
154154
------------------------------------------------------------------------------------ | ---------------- | ------- | ----------------- | ------------------- | -------
155-
[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.27.0 | 2.0.0 | nightly (1.x/2.x) | 0.27.0 | 0.27.0
155+
[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.28.0 | 2.0.0 | nightly (1.x/2.x) | 0.28.0 | 0.28.0
156+
[0.28.0](https://github.com/tensorflow/model-analysis/blob/v0.28.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.28.0 | 0.28.0
156157
[0.27.0](https://github.com/tensorflow/model-analysis/blob/v0.27.0/RELEASE.md) | 2.27.0 | 2.0.0 | 1.15 / 2.4 | 0.27.0 | 0.27.0
157158
[0.26.0](https://github.com/tensorflow/model-analysis/blob/v0.26.0/RELEASE.md) | 2.25.0 | 0.17.0 | 1.15 / 2.3 | 0.26.0 | 0.26.0
158159
[0.25.0](https://github.com/tensorflow/model-analysis/blob/v0.25.0/RELEASE.md) | 2.25.0 | 0.17.0 | 1.15 / 2.3 | 0.25.0 | 0.25.0

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ def select_constraint(default, nightly=None, git_master=None):
291291
'install_requires': [
292292
# Sort alphabetically
293293
'absl-py>=0.9,<0.11',
294-
'apache-beam[gcp]>=2.27,<3',
294+
'apache-beam[gcp]>=2.28,<3',
295295
'ipython>=7,<8',
296296
'ipywidgets>=7,<8',
297297
'numpy>=1.16,<1.20',
@@ -302,12 +302,12 @@ def select_constraint(default, nightly=None, git_master=None):
302302
'six>=1.12,<2',
303303
'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*!=2.3.*,<3',
304304
'tensorflow-metadata' + select_constraint(
305-
default='>=0.27,<0.28',
306-
nightly='>=0.28.0.dev',
305+
default='>=0.28,<0.29',
306+
nightly='>=0.29.0.dev',
307307
git_master='@git+https://github.com/tensorflow/metadata@master'),
308308
'tfx-bsl' + select_constraint(
309-
default='>=0.27,<0.28',
310-
nightly='>=0.28.0.dev',
309+
default='>=0.28,<0.29',
310+
nightly='>=0.29.0.dev',
311311
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
312312
],
313313
'extras_require': {

tensorflow_model_analysis/notebook/jupyter/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tensorflow_model_analysis",
3-
"version": "0.28.0.dev",
3+
"version": "0.29.0.dev",
44
"homepage": "https://github.com/tensorflow/model-analysis",
55
"bugs": "https://github.com/tensorflow/model-analysis/issues",
66
"license": "Apache-2.0",

tensorflow_model_analysis/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616

1717
# Version string for this release of TFMA.
1818
# Note that setup.py reads and uses this version.
19-
VERSION = '0.28.0.dev'
19+
VERSION = '0.29.0.dev'

0 commit comments

Comments
 (0)