Skip to content

Commit 54ba430

Browse files
dhruvesh09tf-model-analysis-team
authored and
tf-model-analysis-team
committed
TFMA 0.24.0 Release
PiperOrigin-RevId: 330844520
1 parent 850c1be commit 54ba430

File tree

6 files changed

+21
-6
lines changed

6 files changed

+21
-6
lines changed

README.md

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

9292
|tensorflow-model-analysis |apache-beam[gcp]|pyarrow |tensorflow |tensorflow-metadata |tfx-bsl |
9393
|------------------------------------------------------------------------------------ |----------------|----------|-------------------|--------------------|----------|
94-
|[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.23.0 | 0.17.0 | nightly (1.x/2.x) | 0.23.0 | 0.23.0 |
94+
|[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.23.0 | 0.17.0 | nightly (1.x/2.x) | 0.24.0 | 0.24.0 |
95+
|[0.24.0](https://github.com/tensorflow/model-analysis/blob/v0.24.0/RELEASE.md) | 2.23.0 | 0.17.0 | 1.15 / 2.3 | 0.24.0 | 0.24.0 |
9596
|[0.23.0](https://github.com/tensorflow/model-analysis/blob/v0.23.0/RELEASE.md) | 2.23.0 | 0.17.0 | 1.15 / 2.3 | 0.23.0 | 0.23.0 |
9697
|[0.22.2](https://github.com/tensorflow/model-analysis/blob/v0.22.2/RELEASE.md) | 2.20.0 | 0.16.0 | 1.15 / 2.2 | 0.22.2 | 0.22.0 |
9798
|[0.22.1](https://github.com/tensorflow/model-analysis/blob/v0.22.1/RELEASE.md) | 2.20.0 | 0.16.0 | 1.15 / 2.2 | 0.22.2 | 0.22.0 |

RELEASE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44

55
## Major Features and Improvements
66

7+
## Bug fixes and other changes
8+
9+
## Breaking changes
10+
11+
## Deprecations
12+
13+
# Version 0.24.0
14+
15+
## Major Features and Improvements
16+
717
* Use TFXIO and batched extractors by default in TFMA.
818

919
## Bug fixes and other changes
@@ -16,8 +26,11 @@
1626
* Made the Fairness Indicators UI thresholds drop down list sorted.
1727
* Fix the bug that Sort menu is not hidden when there is no model comparison.
1828
* Depends on `absl-py>=0.9,<0.11`.
29+
* Depends on `ipython>=7,<8`.
1930
* Depends on `pandas>=1.0,<2`.
2031
* Depends on `protobuf>=3.9.2,<4`.
32+
* Depends on `tensorflow-metadata>=0.24.0,<0.25.0`.
33+
* Depends on `tfx-bsl>=0.24.0,<0.25.0`.
2134

2235
## Breaking changes
2336

g3doc/install.md

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

6161
tensorflow-model-analysis | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl
6262
------------------------------------------------------------------------------------ | ---------------- | ------- | ----------------- | ------------------- | -------
63-
[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.23.0 | 0.17.0 | nightly (1.x/2.x) | 0.23.0 | 0.23.0
63+
[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.23.0 | 0.17.0 | nightly (1.x/2.x) | 0.24.0 | 0.24.0
64+
[0.24.0](https://github.com/tensorflow/model-analysis/blob/v0.24.0/RELEASE.md) | 2.23.0 | 0.17.0 | 1.15 / 2.3 | 0.24.0 | 0.24.0
6465
[0.23.0](https://github.com/tensorflow/model-analysis/blob/v0.23.0/RELEASE.md) | 2.23.0 | 0.17.0 | 1.15 / 2.3 | 0.23.0 | 0.23.0
6566
[0.22.2](https://github.com/tensorflow/model-analysis/blob/v0.22.2/RELEASE.md) | 2.20.0 | 0.16.0 | 1.15 / 2.2 | 0.22.2 | 0.22.0
6667
[0.22.1](https://github.com/tensorflow/model-analysis/blob/v0.22.1/RELEASE.md) | 2.20.0 | 0.16.0 | 1.15 / 2.2 | 0.22.2 | 0.22.0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,8 @@ def run(self):
279279
'scipy>=1.4.1,<2',
280280
'six>=1.12,<2',
281281
'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,<3',
282-
'tensorflow-metadata>=0.23,<0.24',
283-
'tfx-bsl>=0.23,<0.24',
282+
'tensorflow-metadata>=0.24,<0.25',
283+
'tfx-bsl>=0.24,<0.25',
284284
'tensorflowjs>=2.0.1.post1,<3',
285285
# TODO(b/158034704): Remove prompt-toolkit pin resulted from
286286
# tfjs -> PyInquirer dependency chain.

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.24.0.dev",
3+
"version": "0.25.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.24.0.dev'
19+
VERSION = '0.25.0.dev'

0 commit comments

Comments
 (0)