[go: nahoru, domu]

Skip to content

Commit

Permalink
Small change to expected directory structure in golden_analyzer_cache…
Browse files Browse the repository at this point in the history
…_test and output_wrapper_test

PiperOrigin-RevId: 372386921
  • Loading branch information
zoyahav authored and tf-transform-team committed May 6, 2021
1 parent df21282 commit 774458b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tensorflow_transform/beam/analyzer_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@
# This should be advanced whenever a non-backwards compatible change is made
# that affects analyzer cache. For example, changing accumulator format.
_CACHE_VERSION_NUMBER = 1
_CACHE_VERSION = tf.compat.as_bytes('__v{}__{}.{}_'.format(
_CACHE_VERSION_NUMBER, sys.version_info.major, sys.version_info.minor))
_PYTHON_VERSION = '{}.{}'.format(sys.version_info.major, sys.version_info.minor)
_CACHE_VERSION = tf.compat.as_bytes('__v{}__{}_'.format(_CACHE_VERSION_NUMBER,
_PYTHON_VERSION))

_CACHE_COMPONENT_CHARACTER_REPLACEMENTS = (
('/', '-'),
Expand Down

0 comments on commit 774458b

Please sign in to comment.