File tree Expand file tree Collapse file tree 4 files changed +8
-17
lines changed
Expand file tree Collapse file tree 4 files changed +8
-17
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ other *untested* combinations may also work.
9797tensorflow-transform | apache-beam[ gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl |
9898------------------------------------------------------------------------------- | -----------------| --------|-------------------|---------------------|---------|
9999[ GitHub master] ( https://github.com/tensorflow/transform/blob/master/RELEASE.md ) | 2.29.0 | 2.0.0 | nightly (1.x/2.x) | 1.1.0 | 1.1.0 |
100+ [ 1.1.1] ( https://github.com/tensorflow/transform/blob/v1.1.1/RELEASE.md ) | 2.29.0 | 2.0.0 | 1.15.2 / 2.5 | 1.1.0 | 1.1.1 |
100101[ 1.1.0] ( https://github.com/tensorflow/transform/blob/v1.1.0/RELEASE.md ) | 2.29.0 | 2.0.0 | 1.15.2 / 2.5 | 1.1.0 | 1.1.0 |
101102[ 1.0.0] ( https://github.com/tensorflow/transform/blob/v1.0.0/RELEASE.md ) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.0.0 | 1.0.0 |
102103[ 0.30.0] ( https://github.com/tensorflow/transform/blob/v0.30.0/RELEASE.md ) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.30.0 | 0.30.0 |
Original file line number Diff line number Diff line change 1- # Version 1.1.0
1+ # Version 1.1.1
22
33## Major Features and Improvements
44
5- * Improved resource usage for ` tft.vocabulary ` when ` top_k ` is set by removing
6- stages performing repetitive sorting.
5+ * N/A
76
87## Bug Fixes and Other Changes
98
10- * Support invoking Keras models inside the ` preprocessing_fn ` using
11- ` tft.make_and_track_object ` when ` force_tf_compat_v1=False ` with TF2
12- behaviors enabled.
13- * Fix an issue when computing the metadata for a function with automatic
14- control dependencies added where dependencies on inputs which should not be
15- evaluated was being retained.
16- * Census TFT example: wrapped table initialization with a tf.init_scope() in
17- order to avoid reinitializing the table for each batch of data.
18- * Stopped depending on ` six ` .
19- * Depends on ` protobuf>=3.13,<4 ` .
20- * Depends on ` tensorflow-metadata>=1.1.0,<1.2.0 ` .
21- * Depends on ` tfx-bsl>=1.1.0,<1.2.0 ` .
9+ * Depends on ` google-cloud-bigquery>=1.28.0,<2.21 ` .
10+ * Depends on ` tfx-bsl>=1.1.1,<1.2.0 ` .
2211
2312## Breaking Changes
2413
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ def _make_required_install_packages():
4444 return [
4545 'absl-py>=0.9,<0.13' ,
4646 'apache-beam[gcp]>=2.29,<3' ,
47+ 'google-cloud-bigquery>=1.28.0,<2.21' ,
4748 'numpy>=1.16,<1.20' ,
4849 'protobuf>=3.13,<4' ,
4950 'pyarrow>=1,<3' ,
@@ -55,7 +56,7 @@ def _make_required_install_packages():
5556 nightly = '>=1.2.0.dev' ,
5657 git_master = '@git+https://github.com/tensorflow/metadata@master' ),
5758 'tfx-bsl' + select_constraint (
58- default = '>=1.1.0 ,<1.2.0' ,
59+ default = '>=1.1.1 ,<1.2.0' ,
5960 nightly = '>=1.2.0.dev' ,
6061 git_master = '@git+https://github.com/tensorflow/tfx-bsl@master' ),
6162 ]
Original file line number Diff line number Diff line change 1414"""Contains the version string of TF.Transform."""
1515
1616# Note that setup.py uses this version.
17- __version__ = '1.1.0 '
17+ __version__ = '1.1.1 '
You can’t perform that action at this time.
0 commit comments