You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -768,7 +768,7 @@ This customized Python code must be named ``inference.py`` and is specified thro
768
768
model = TensorFlowModel(entry_point='inference.py',
769
769
model_data='s3://mybucket/model.tar.gz',
770
770
role='MySageMakerRole',
771
-
framework_version='MyFrameworkVersion')
771
+
framework_version='x.x.x')
772
772
773
773
In the example above, ``inference.py`` is assumed to be a file inside ``model.tar.gz``. If you want to use a local file instead, you must add the ``source_dir`` argument. See the documentation on `TensorFlowModel <https://sagemaker.readthedocs.io/en/stable/frameworks/tensorflow/sagemaker.tensorflow.html#sagemaker.tensorflow.model.TensorFlowModel>`_.
774
774
@@ -925,7 +925,7 @@ processing. There are 2 ways to do this:
925
925
dependencies=['requirements.txt'],
926
926
model_data='s3://mybucket/model.tar.gz',
927
927
role='MySageMakerRole',
928
-
framework_version='MyFrameworkVersion')
928
+
framework_version='x.x.x')
929
929
930
930
931
931
2. If you are working in a network-isolation situation or if you don't
@@ -944,7 +944,7 @@ processing. There are 2 ways to do this:
944
944
dependencies=['/path/to/folder/named/lib'],
945
945
model_data='s3://mybucket/model.tar.gz',
946
946
role='MySageMakerRole',
947
-
framework_version='MyFrameworkVersion')
947
+
framework_version='x.x.x')
948
948
949
949
For more information, see: https://github.com/aws/sagemaker-tensorflow-serving-container#prepost-processing
0 commit comments