Skip to content

Commit 1c98b5c

Browse files
committed
Format using pylint and flake8
1 parent cd103ae commit 1c98b5c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/sagemaker/tensorflow/model.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,11 @@ def __init__(
185185
)
186186
self.framework_version = framework_version
187187

188-
## Inference framework version is being introduced to accomodate the mismatch between tensorflow and tensorflow serving releases,
189-
## wherein the TF and TFS might have different patch versions, but end up hosting the model of same TF version. For eg., the
190-
## upstream TFS-2.12.0 release was a bad release and hence a new TFS-2.12.1 release was made to host models from TF-2.12.0.
188+
# Inference framework version is being introduced to accomodate the mismatch between
189+
# tensorflow and tensorflow serving releases, wherein the TF and TFS might have different
190+
# patch versions, but end up hosting the model of same TF version. For eg., the upstream
191+
# TFS-2.12.0 release was a bad release and hence a new TFS-2.12.1 release was made to host
192+
# models from TF-2.12.0.
191193
training_inference_version_mismatch_dict = {"2.12.0": "2.12.1"}
192194
self.inference_framework_version = training_inference_version_mismatch_dict.get(
193195
framework_version, framework_version

0 commit comments

Comments
 (0)