smeet07 commented on code in PR #26225: URL: https://github.com/apache/beam/pull/26225#discussion_r1266772331
########## sdks/python/apache_beam/testing/benchmarks/cloudml/criteo_tft/criteo.py: ########## @@ -20,8 +20,11 @@ from __future__ import division from __future__ import print_function -import tensorflow as tf -import tensorflow_transform as tft +try: + import tensorflow as tf + import tensorflow_transform as tft +except ImportError as e: Review Comment: Not adding it was causing import error that is why added it , I'll remove it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
