Skip to content

Commit 179bdbc

Browse files
venkat2469tfx-copybara
authored andcommitted
TFMA 0.40.0 Release
PiperOrigin-RevId: 458389754
1 parent 7977d5f commit 179bdbc

File tree

6 files changed

+28
-8
lines changed

6 files changed

+28
-8
lines changed

README.md

+2-1
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.38.0 | 5.0.0 | nightly (1.x/2.x) | 1.8.0 | 1.8.0 |
212+
|[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.38.0 | 5.0.0 | nightly (1.x/2.x) | 1.9.0 | 1.9.0 |
213+
|[0.40.0](https://github.com/tensorflow/model-analysis/blob/v0.40.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15.5 / 2.9 | 1.9.0 | 1.9.0 |
213214
|[0.39.0](https://github.com/tensorflow/model-analysis/blob/v0.39.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15.5 / 2.8 | 1.8.0 | 1.8.0 |
214215
|[0.38.0](https://github.com/tensorflow/model-analysis/blob/v0.38.0/RELEASE.md) | 2.36.0 | 5.0.0 | 1.15.5 / 2.8 | 1.7.0 | 1.7.0 |
215216
|[0.37.0](https://github.com/tensorflow/model-analysis/blob/v0.37.0/RELEASE.md) | 2.35.0 | 5.0.0 | 1.15.5 / 2.7 | 1.6.0 | 1.6.0 |

RELEASE.md

+18
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,34 @@
44

55
## Major Features and Improvements
66

7+
## Bug fixes and other Changes
8+
9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 0.40.0
14+
15+
## Major Features and Improvements
16+
717
* Add object detection related utilities.
818

919
## Bug fixes and other Changes
1020

1121
* Depends on `tensorflow>=1.15.5,<2` or `tensorflow>=2.9,<3`
1222
* Fix issue where labels with -1 values are one-hot encoded when they
1323
shouldn't be ## Breaking Changes
24+
* Depends on `tfx-bsl>=1.9.0,<1.10.0`.
25+
* Depends on `tensorflow-metadata>=1.9.0,<1.10.0`.
26+
27+
## Breaking Changes
28+
29+
* N/A
1430

1531
## Deprecations
1632

33+
* N/A
34+
1735
# Version 0.39.0
1836

1937
## Major Features and Improvements

g3doc/install.md

+2-1
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.38.0 | 5.0.0 | nightly (1.x/2.x) | 1.8.0 | 1.8.0
155+
[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.38.0 | 5.0.0 | nightly (1.x/2.x) | 1.9.0 | 1.9.0
156+
[0.40.0](https://github.com/tensorflow/model-analysis/blob/v0.40.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15 / 2.9 | 1.9.0 | 1.9.0
156157
[0.39.0](https://github.com/tensorflow/model-analysis/blob/v0.39.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15 / 2.8 | 1.8.0 | 1.8.0
157158
[0.38.0](https://github.com/tensorflow/model-analysis/blob/v0.38.0/RELEASE.md) | 2.36.0 | 5.0.0 | 1.15 / 2.8 | 1.7.0 | 1.7.0
158159
[0.37.0](https://github.com/tensorflow/model-analysis/blob/v0.37.0/RELEASE.md) | 2.35.0 | 5.0.0 | 1.15 / 2.7 | 1.6.0 | 1.6.0

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -302,12 +302,12 @@ def select_constraint(default, nightly=None, git_master=None):
302302
'six>=1.12,<2',
303303
'tensorflow>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,<3',
304304
'tensorflow-metadata' + select_constraint(
305-
default='>=1.8.0,<1.9.0',
306-
nightly='>=1.9.0.dev',
305+
default='>=1.9.0,<1.10.0',
306+
nightly='>=1.10.0.dev',
307307
git_master='@git+https://github.com/tensorflow/metadata@master'),
308308
'tfx-bsl' + select_constraint(
309-
default='>=1.8.0,<1.9.0',
310-
nightly='>=1.9.0.dev',
309+
default='>=1.9.0,<1.10.0',
310+
nightly='>=1.10.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tensorflow_model_analysis",
3-
"version": "0.40.0.dev",
3+
"version": "0.41.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

+1-1
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.40.0.dev'
18+
VERSION = '0.41.0.dev'

0 commit comments

Comments
 (0)