Skip to content

Commit

Permalink
TFMA 0.40.0 Release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 458389754
  • Loading branch information
venkat2469 authored and tfx-copybara committed Jul 1, 2022
1 parent 7977d5f commit 179bdbc
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 8 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,8 @@ combinations may also work.

|tensorflow-model-analysis |apache-beam[gcp]|pyarrow |tensorflow |tensorflow-metadata |tfx-bsl |
|------------------------------------------------------------------------------------ |----------------|----------|-------------------|--------------------|----------|
|[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 |
|[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 |
|[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 |
|[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 |
|[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 |
|[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 |
Expand Down
18 changes: 18 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,34 @@

## Major Features and Improvements

## Bug fixes and other Changes

## Breaking Changes

## Deprecations

# Version 0.40.0

## Major Features and Improvements

* Add object detection related utilities.

## Bug fixes and other Changes

* Depends on `tensorflow>=1.15.5,<2` or `tensorflow>=2.9,<3`
* Fix issue where labels with -1 values are one-hot encoded when they
shouldn't be ## Breaking Changes
* Depends on `tfx-bsl>=1.9.0,<1.10.0`.
* Depends on `tensorflow-metadata>=1.9.0,<1.10.0`.

## Breaking Changes

* N/A

## Deprecations

* N/A

# Version 0.39.0

## Major Features and Improvements
Expand Down
3 changes: 2 additions & 1 deletion g3doc/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@ combinations may also work.

tensorflow-model-analysis | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl
------------------------------------------------------------------------------------ | ---------------- | ------- | ----------------- | ------------------- | -------
[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
[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
[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
[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
[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
[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
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,12 +302,12 @@ def select_constraint(default, nightly=None, git_master=None):
'six>=1.12,<2',
'tensorflow>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,<3',
'tensorflow-metadata' + select_constraint(
default='>=1.8.0,<1.9.0',
nightly='>=1.9.0.dev',
default='>=1.9.0,<1.10.0',
nightly='>=1.10.0.dev',
git_master='@git+https://github.com/tensorflow/metadata@master'),
'tfx-bsl' + select_constraint(
default='>=1.8.0,<1.9.0',
nightly='>=1.9.0.dev',
default='>=1.9.0,<1.10.0',
nightly='>=1.10.0.dev',
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
],
'extras_require': {
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_model_analysis/notebook/jupyter/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tensorflow_model_analysis",
"version": "0.40.0.dev",
"version": "0.41.0.dev",
"homepage": "https://github.com/tensorflow/model-analysis",
"bugs": "https://github.com/tensorflow/model-analysis/issues",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_model_analysis/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@

# Version string for this release of TFMA.
# Note that setup.py reads and uses this version.
VERSION = '0.40.0.dev'
VERSION = '0.41.0.dev'

0 comments on commit 179bdbc

Please sign in to comment.