Skip to content

Commit 653e4a0

Browse files
author
tf-model-analysis-team
committed
Prepare for TFMA 0.15.1 Release
PiperOrigin-RevId: 276153476
1 parent a155d81 commit 653e4a0

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ combinations may also work.
6262
|tensorflow-model-analysis |tensorflow |apache-beam[gcp]|
6363
|------------------------------------------------------------------------------------|--------------|----------------|
6464
|[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md)|nightly (1.x/2.x) |2.16.0 |
65+
|[0.15.1](https://github.com/tensorflow/model-analysis/blob/v0.15.1/RELEASE.md) |1.15 / 2.0 |2.16.0 |
6566
|[0.15.0](https://github.com/tensorflow/model-analysis/blob/v0.15.0/RELEASE.md) |1.15 |2.16.0 |
6667
|[0.14.0](https://github.com/tensorflow/model-analysis/blob/v0.14.0/RELEASE.md) |1.14 |2.14.0 |
6768
|[0.13.1](https://github.com/tensorflow/model-analysis/blob/v0.13.1/RELEASE.md) |1.13 |2.11.0 |

RELEASE.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Current version (not yet released; still in development)
1+
# Release 0.15.1
22

33
## Major Features and Improvements
44

@@ -21,6 +21,14 @@
2121

2222
## Bug fixes and other changes
2323

24+
* Depends on `tensorflow>=1.15,<3.0`.
25+
* Starting from 1.15, package `tensorflow` comes with GPU support. Users
26+
won't need to choose between `tensorflow` and `tensorflow-gpu`.
27+
* Caveat: `tensorflow` 2.0.0 is an exception and does not have GPU
28+
support. If `tensorflow-gpu` 2.0.0 is installed before installing
29+
`tensorflow_model_analysis`, it will be replaced with `tensorflow`
30+
2.0.0. Re-install `tensorflow-gpu` 2.0.0 if needed.
31+
2432
## Breaking changes
2533

2634
## Deprecations
@@ -214,7 +222,8 @@
214222
* Depends on `numpy>=1.14.5,<2`.
215223
* Depends on `scipy==0.19.1`.
216224
* Depends on `protobuf==3.7.0rc2`.
217-
* Chicago Taxi example is moved to tfx repo (https://github.com/tensorflow/tfx/tree/master/tfx/examples/chicago_taxi)
225+
* Chicago Taxi example is moved to tfx repo
226+
(https://github.com/tensorflow/tfx/tree/master/tfx/examples/chicago_taxi)
218227

219228
## Breaking changes
220229

g3doc/install.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ combinations may also work.
5858
tensorflow-model-analysis | tensorflow | apache-beam[gcp]
5959
------------------------------------------------------------------------------------ | ----------------- | ----------------
6060
[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | nightly (1.x/2.x) | 2.16.0
61+
[0.15.1](https://github.com/tensorflow/model-analysis/blob/v0.15.1/RELEASE.md) | 1.15 / 2.0 | 2.16.0
6162
[0.15.0](https://github.com/tensorflow/model-analysis/blob/v0.15.0/RELEASE.md) | 1.15 | 2.16.0
6263
[0.14.0](https://github.com/tensorflow/model-analysis/blob/v0.14.0/RELEASE.md) | 1.14 | 2.14.0
6364
[0.13.1](https://github.com/tensorflow/model-analysis/blob/v0.13.1/RELEASE.md) | 1.13 | 2.11.0

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -264,10 +264,8 @@ def run(self):
264264
# TODO(b/126957988): Stop pinning scipy when possible.
265265
'scipy==1.1.0',
266266
'six>=1.12,<2',
267-
# TODO(xinzha): Uncomment this once TF can automatically select between
268-
# CPU and GPU installation.
269-
# 'tensorflow>=1.15,<3',
270-
'tfx-bsl>=0.15.0,<0.17'
267+
'tensorflow>=1.15,<3',
268+
'tfx-bsl>=0.15,<0.16'
271269
],
272270
'python_requires': '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,<4',
273271
'packages': find_packages(),

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_STRING = '0.16.0dev'
18+
VERSION_STRING = '0.15.1'

0 commit comments

Comments
 (0)