This issue was reported by AWS customer Nishank Singla from GE Healthcare.
This is a small correction for some default variables used in the TensorFlow Estimator class.
It looks like in the TF 1.12 upgrade, someone meant to replace TF_VERSION with LATEST_VERSION:
TF_VERSION is still set to 1.11:
And LATEST_VERSION is not actually used as the default in the constructor:
| ifframework_versionisNone: |
| LOGGER.warning(fw.empty_framework_version_warning(TF_VERSION, TF_VERSION)) |
| self.framework_version=framework_versionorTF_VERSION |
This issue was reported by AWS customer Nishank Singla from GE Healthcare.
This is a small correction for some default variables used in the TensorFlow Estimator class.
It looks like in the TF 1.12 upgrade, someone meant to replace
TF_VERSIONwithLATEST_VERSION:sagemaker-python-sdk/src/sagemaker/tensorflow/estimator.py
Line 174 in 2763f9a
TF_VERSION is still set to 1.11:
sagemaker-python-sdk/src/sagemaker/tensorflow/defaults.py
Line 15 in 2763f9a
And LATEST_VERSION is not actually used as the default in the constructor:
sagemaker-python-sdk/src/sagemaker/tensorflow/estimator.py
Lines 231 to 233 in 2763f9a