File tree Expand file tree Collapse file tree 5 files changed +22
-7
lines changed
tensorflow_model_analysis Expand file tree Collapse file tree 5 files changed +22
-7
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ combinations may also work.
62
62
| tensorflow-model-analysis | tensorflow | apache-beam[ gcp] |
63
63
| ------------------------------------------------------------------------------------| --------------| ----------------|
64
64
| [ 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 |
65
66
| [ 0.21.1] ( https://github.com/tensorflow/model-analysis/blob/v0.21.1/RELEASE.md ) | 1.15 / 2.1 | 2.17.0 |
66
67
| [ 0.21.0] ( https://github.com/tensorflow/model-analysis/blob/v0.21.0/RELEASE.md ) | 1.15 / 2.1 | 2.17.0 |
67
68
| [ 0.15.4] ( https://github.com/tensorflow/model-analysis/blob/v0.15.4/RELEASE.md ) | 1.15 / 2.0 | 2.16.0 |
Original file line number Diff line number Diff line change 1
- # Release 0.21.1
1
+ # Release 0.21.2
2
2
3
3
## Major Features and Improvements
4
4
5
5
## Bug fixes and other changes
6
6
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
11
8
* Increased table and tooltip font in Fairness Indicators.
12
9
13
10
## Breaking changes
18
15
19
16
## Deprecations
20
17
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
+
21
33
# Release 0.21.0
22
34
23
35
## Major Features and Improvements
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ combinations may also work.
58
58
tensorflow-model-analysis | tensorflow | apache-beam[ gcp]
59
59
------------------------------------------------------------------------------------ | ----------------- | ----------------
60
60
[ 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
61
62
[ 0.21.1] ( https://github.com/tensorflow/model-analysis/blob/v0.21.1/RELEASE.md ) | 1.15 / 2.1 | 2.17.0
62
63
[ 0.21.0] ( https://github.com/tensorflow/model-analysis/blob/v0.21.0/RELEASE.md ) | 1.15 / 2.1 | 2.17.0
63
64
[ 0.15.4] ( https://github.com/tensorflow/model-analysis/blob/v0.15.4/RELEASE.md ) | 1.15 / 2.0 | 2.16.0
Original file line number Diff line number Diff line change @@ -255,7 +255,8 @@ def run(self):
255
255
'jupyter>=1,<2' ,
256
256
'numpy>=1.16,<2' ,
257
257
'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"' ,
259
260
'six>=1.12,<2' ,
260
261
'tensorflow>=1.15,<3' ,
261
262
'tensorflow-metadata>=0.21,<0.22' ,
Original file line number Diff line number Diff line change 15
15
16
16
# Version string for this release of TFMA.
17
17
# Note that setup.py reads and uses this version.
18
- VERSION_STRING = '0.21.1 '
18
+ VERSION_STRING = '0.21.2 '
You can’t perform that action at this time.
0 commit comments