Skip to content

Commit 1cd0cf2

Browse files
dhruvesh09tf-model-analysis-team
authored and
tf-model-analysis-team
committed
TFMA 0.33.0 Release
PiperOrigin-RevId: 387428466
1 parent 6ba1eef commit 1cd0cf2

File tree

6 files changed

+26
-9
lines changed

6 files changed

+26
-9
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.29.0 | 2.0.0 | nightly (1.x/2.x) | 1.1.0 | 1.1.1 |
212+
|[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.31.0 | 2.0.0 | nightly (1.x/2.x) | 1.2.0 | 1.2.0 |
213+
|[0.33.0](https://github.com/tensorflow/model-analysis/blob/v0.33.0/RELEASE.md) | 2.31.0 | 2.0.0 | 1.15 / 2.5 | 1.2.0 | 1.2.0 |
213214
|[0.32.1](https://github.com/tensorflow/model-analysis/blob/v0.32.1/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.1.0 | 1.1.1 |
214215
|[0.32.0](https://github.com/tensorflow/model-analysis/blob/v0.32.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.1.0 | 1.1.0 |
215216
|[0.31.0](https://github.com/tensorflow/model-analysis/blob/v0.31.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.0.0 | 1.0.0 |

RELEASE.md

Lines changed: 15 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.33.0
14+
15+
## Major Features and Improvements
16+
717
* Provided functionality for `slice_keys_sql` config. It's not available under
818
Windows.
919

@@ -13,6 +23,9 @@
1323
* Update README for JupyterLab 3
1424
* Provide implementation of ExactMatch metric.
1525
* Jackknife CI method now works with cross-slice metrics.
26+
* Depends on `apache-beam[gcp]>=2.31,<3`.
27+
* Depends on `tensorflow-metadata>=1.2.0,<1.3.0`.
28+
* Depends on `tfx-bsl>=1.2.0,<1.3.0`.
1629

1730
## Breaking Changes
1831

@@ -26,6 +39,8 @@
2639

2740
## Deprecations
2841

42+
* N/A
43+
2944
# Version 0.32.1
3045

3146
## 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.29.0 | 2.0.0 | nightly (1.x/2.x) | 1.1.0 | 1.1.1
155+
[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.31.0 | 2.0.0 | nightly (1.x/2.x) | 1.2.0 | 1.2.0
156+
[0.33.0](https://github.com/tensorflow/model-analysis/blob/v0.33.0/RELEASE.md) | 2.31.0 | 2.0.0 | 1.15 / 2.5 | 1.2.0 | 1.2.0
156157
[0.32.1](https://github.com/tensorflow/model-analysis/blob/v0.32.1/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.1.0 | 1.1.1
157158
[0.32.0](https://github.com/tensorflow/model-analysis/blob/v0.32.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.1.0 | 1.1.0
158159
[0.31.0](https://github.com/tensorflow/model-analysis/blob/v0.31.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.0.0 | 1.0.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.13',
294-
'apache-beam[gcp]>=2.29,<3',
294+
'apache-beam[gcp]>=2.31,<3',
295295
# TODO(b/193746372): Remove bigquery dependency after TF 2.6 becomes
296296
# available.
297297
'google-cloud-bigquery>=1.28.0,<2.21',
@@ -305,12 +305,12 @@ def select_constraint(default, nightly=None, git_master=None):
305305
'six>=1.12,<2',
306306
'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,<3',
307307
'tensorflow-metadata' + select_constraint(
308-
default='>=1.1.0,<1.2.0',
309-
nightly='>=1.2.0.dev',
308+
default='>=1.2.0,<1.3.0',
309+
nightly='>=1.3.0.dev',
310310
git_master='@git+https://github.com/tensorflow/metadata@master'),
311311
'tfx-bsl' + select_constraint(
312-
default='>=1.1.0,<1.2.0',
313-
nightly='>=1.2.0.dev',
312+
default='>=1.2.0,<1.3.0',
313+
nightly='>=1.3.0.dev',
314314
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
315315
],
316316
'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.33.0.dev",
3+
"version": "0.34.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.33.0.dev'
19+
VERSION = '0.34.0.dev'

0 commit comments

Comments
 (0)