We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49f0248 commit 1e23db4Copy full SHA for 1e23db4
src/sagemaker/jumpstart/hub/hub.py
@@ -99,14 +99,12 @@ def create(
99
"hub_description": description,
100
"hub_display_name": display_name,
101
"hub_search_keywords": search_keywords,
102
- "tags": tags
+ "tags": tags,
103
}
104
-
+
105
if self.bucket_name:
106
request["s3_storage_config"] = {
107
- "S3OutputPath": (
108
- f"s3://{self.bucket_name}/{self.hub_name}-{curr_timestamp}"
109
- )
+ "S3OutputPath": (f"s3://{self.bucket_name}/{self.hub_name}-{curr_timestamp}")
110
111
112
return self._sagemaker_session.create_hub(**request)
0 commit comments