Skip to content

Commit cd05a31

Browse files
dhruvesh09tf-model-analysis-team
authored and
tf-model-analysis-team
committed
Prepare for TFMA 0.21.2 Release
PiperOrigin-RevId: 292584407
1 parent 8e78aa8 commit cd05a31

File tree

5 files changed

+22
-7
lines changed

5 files changed

+22
-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.17.0 |
65+
|[0.21.2](https://github.com/tensorflow/model-analysis/blob/v0.21.2/RELEASE.md) |1.15 / 2.1 |2.17.0 |
6566
|[0.21.1](https://github.com/tensorflow/model-analysis/blob/v0.21.1/RELEASE.md) |1.15 / 2.1 |2.17.0 |
6667
|[0.21.0](https://github.com/tensorflow/model-analysis/blob/v0.21.0/RELEASE.md) |1.15 / 2.1 |2.17.0 |
6768
|[0.15.4](https://github.com/tensorflow/model-analysis/blob/v0.15.4/RELEASE.md) |1.15 / 2.0 |2.16.0 |

RELEASE.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
# Release 0.21.1
1+
# Release 0.21.2
22

33
## Major Features and Improvements
44

55
## Bug fixes and other changes
66

7-
* Adding support to compute deterministic confidence intervals using a seed
8-
value in tfma.run_model_analysis API for testing or experimental purposes.
9-
* Fixed calculation of `tfma.metrics.CoefficientOfDiscrimination` and
10-
`tfma.metrics.RelativeCoefficientOfDiscrimination`.
7+
* Adding SciPy dependency for both Python2 and Python3
118
* Increased table and tooltip font in Fairness Indicators.
129

1310
## Breaking changes
@@ -18,6 +15,21 @@
1815

1916
## Deprecations
2017

18+
# Release 0.21.1
19+
20+
## Major Features and Improvements
21+
22+
## Bug fixes and other changes
23+
24+
* Adding support to compute deterministic confidence intervals using a seed
25+
value in tfma.run_model_analysis API for testing or experimental purposes.
26+
* Fixed calculation of `tfma.metrics.CoefficientOfDiscrimination` and
27+
`tfma.metrics.RelativeCoefficientOfDiscrimination`.
28+
29+
## Breaking changes
30+
31+
## Deprecations
32+
2133
# Release 0.21.0
2234

2335
## Major Features and Improvements

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.21.2](https://github.com/tensorflow/model-analysis/blob/v0.21.2/RELEASE.md) | 1.15 / 2.1 | 2.17.0
6162
[0.21.1](https://github.com/tensorflow/model-analysis/blob/v0.21.1/RELEASE.md) | 1.15 / 2.1 | 2.17.0
6263
[0.21.0](https://github.com/tensorflow/model-analysis/blob/v0.21.0/RELEASE.md) | 1.15 / 2.1 | 2.17.0
6364
[0.15.4](https://github.com/tensorflow/model-analysis/blob/v0.15.4/RELEASE.md) | 1.15 / 2.0 | 2.16.0

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,8 @@ def run(self):
255255
'jupyter>=1,<2',
256256
'numpy>=1.16,<2',
257257
'protobuf>=3.7,<4',
258-
'scipy==1.2.2',
258+
'scipy == 1.4.1;python_version>="3"',
259+
'scipy == 1.2.2;python_version<"3"',
259260
'six>=1.12,<2',
260261
'tensorflow>=1.15,<3',
261262
'tensorflow-metadata>=0.21,<0.22',

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.21.1'
18+
VERSION_STRING = '0.21.2'

0 commit comments

Comments
 (0)