Skip to content

Commit 63eaeb9

Browse files
rtg0795tfx-copybara
authored andcommitted
TFMA 0.44.0 Release
PiperOrigin-RevId: 524355841
1 parent b503fbd commit 63eaeb9

File tree

6 files changed

+26
-10
lines changed

6 files changed

+26
-10
lines changed

README.md

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

210210
|tensorflow-model-analysis |apache-beam[gcp]|pyarrow |tensorflow |tensorflow-metadata |tfx-bsl |
211211
|------------------------------------------------------------------------------------ |----------------|----------|-------------------|--------------------|----------|
212-
|[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.40.0 | 6.0.0 | nightly (2.x) | 1.12.0 | 1.12.0 |
212+
|[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.40.0 | 6.0.0 | nightly (2.x) | 1.13.1 | 1.13.0 |
213+
|[0.44.0](https://github.com/tensorflow/model-analysis/blob/v0.44.0/RELEASE.md) | 2.40.0 | 6.0.0 | 2.12 | 1.13.1 | 1.13.0 |
213214
|[0.43.0](https://github.com/tensorflow/model-analysis/blob/v0.43.0/RELEASE.md) | 2.40.0 | 6.0.0 | 2.11 | 1.12.0 | 1.12.0 |
214215
|[0.42.0](https://github.com/tensorflow/model-analysis/blob/v0.42.0/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15.5 / 2.10 | 1.11.0 | 1.11.1 |
215216
|[0.41.0](https://github.com/tensorflow/model-analysis/blob/v0.41.0/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15.5 / 2.9 | 1.10.0 | 1.10.1 |

RELEASE.md

Lines changed: 16 additions & 2 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.44.0
14+
15+
## Major Features and Improvements
16+
717
* Add BinaryCrossEntropy and CategoricalCrossEntropy.
818
* Add MeanAbsolutePercentageError and MeanSquaredLogarithmicError
919
* Add SetMatchPrecision and SetMatchRecall
@@ -24,13 +34,17 @@
2434
matrix metrics.
2535
* Add class_id info into sub_key in plot_key for object detection confusion
2636
matrix plot.
27-
* Depends on `tensorflow>=2.12.0,<2.13`.
28-
* Depends on `protobuf>=3.20.3,<5`.
2937
* Fix a bug that auto_pivot dropped nan when deciding which columns are
3038
multivalent for pivoting.
39+
* Depends on `tensorflow>=2.12.0,<2.13`.
40+
* Depends on `protobuf>=3.20.3,<5`.
41+
* Depends on `tfx-bsl>=1.13.0,<1.14.0`.
42+
* Depends on `tensorflow-metadata>=1.13.1,<1.14.0`.
3143

3244
## Breaking Changes
3345

46+
* N/A
47+
3448
## Deprecations
3549

3650
Deprecated python3.7 support.

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.40.0 | 6.0.0 | nightly (2.x) | 1.12.0 | 1.12.0
155+
[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.40.0 | 6.0.0 | nightly (2.x) | 1.13.1 | 1.13.0
156+
[0.44.0](https://github.com/tensorflow/model-analysis/blob/v0.44.0/RELEASE.md) | 2.40.0 | 6.0.0 | 2.12 | 1.13.1 | 1.13.0
156157
[0.43.0](https://github.com/tensorflow/model-analysis/blob/v0.43.0/RELEASE.md) | 2.40.0 | 6.0.0 | 2.11 | 1.12.0 | 1.12.0
157158
[0.42.0](https://github.com/tensorflow/model-analysis/blob/v0.42.0/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15 / 2.10 | 1.11.0 | 1.11.0
158159
[0.41.1](https://github.com/tensorflow/model-analysis/blob/v0.41.1/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15 / 2.9 | 1.10.0 | 1.10.1

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -309,14 +309,14 @@ def select_constraint(default, nightly=None, git_master=None):
309309
'tensorflow>=2.12,<3',
310310
'tensorflow-metadata'
311311
+ select_constraint(
312-
default='>=1.12.0,<1.13.0',
313-
nightly='>=1.13.0.dev',
312+
default='>=1.13.1,<1.14.0',
313+
nightly='>=1.14.0.dev',
314314
git_master='@git+https://github.com/tensorflow/metadata@master',
315315
),
316316
'tfx-bsl'
317317
+ select_constraint(
318-
default='>=1.12.0,<1.13.0',
319-
nightly='>=1.13.0.dev',
318+
default='>=1.13.0,<1.14.0',
319+
nightly='>=1.14.0.dev',
320320
git_master='@git+https://github.com/tensorflow/tfx-bsl@master',
321321
),
322322
],

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.44.0.dev",
3+
"version": "0.45.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
@@ -15,4 +15,4 @@
1515

1616
# Version string for this release of TFMA.
1717
# Note that setup.py reads and uses this version.
18-
VERSION = '0.44.0.dev'
18+
VERSION = '0.45.0.dev'

0 commit comments

Comments
 (0)