Skip to content

Commit 1324ef9

Browse files
mufiAmazonbenieric
authored andcommitted
fix: failing sphinx tests
1 parent b2e851f commit 1324ef9

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

src/sagemaker/feature_store/feature_processor/feature_processor.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ def transform(input_feature_group, input_csv):
8282
inputs (Sequence[Union[FeatureGroupDataSource, CSVDataSource, ParquetDataSource,
8383
BaseDataSource]]): A list of data sources.
8484
output (str): A Feature Group ARN to write results of this function to.
85-
target_stores (Optional[list[str]], optional): A list containing at least one of
86-
'OnlineStore' or 'OfflineStore'. If unspecified, data will be ingested to the enabled
87-
stores of the output feature group. Defaults to None.
85+
target_stores (Optional[list[str]], optional): A list containing at least one
86+
of 'OnlineStore' or 'OfflineStore'. If unspecified, data will be ingested to the
87+
enabled stores of the output feature group. Defaults to None.
8888
parameters (Optional[Dict[str, Union[str, Dict]]], optional): Parameters to be provided to
8989
the decorated function, available as the 'params' argument. Useful for parameterized
9090
functions. The params argument also contains the set of system provided parameters
@@ -96,6 +96,7 @@ def transform(input_feature_group, input_csv):
9696
development phase to ensure that data is not used until the function is ready. It also
9797
useful for users that want to manage their own data ingestion. Defaults to True.
9898
spark_config (Dict[str, str]): A dict contains the key-value paris for Spark configurations.
99+
99100
Raises:
100101
IngestionError: If any rows are not ingested successfully then a sample of the records,
101102
with failure reasons, is logged.

src/sagemaker/session.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4566,14 +4566,14 @@ def update_inference_component(
45664566
inference_component_name (str): Name of the Amazon SageMaker ``InferenceComponent``.
45674567
specification ([dict[str,int]]): Resource configuration. Optional.
45684568
Example: {
4569-
"MinMemoryRequiredInMb": 1024,
4570-
"NumberOfCpuCoresRequired": 1,
4571-
"NumberOfAcceleratorDevicesRequired": 1,
4572-
"MaxMemoryRequiredInMb": 4096,
4569+
"MinMemoryRequiredInMb": 1024,
4570+
"NumberOfCpuCoresRequired": 1,
4571+
"NumberOfAcceleratorDevicesRequired": 1,
4572+
"MaxMemoryRequiredInMb": 4096,
45734573
},
45744574
runtime_config ([dict[str,int]]): Number of copies. Optional.
45754575
Default: {
4576-
"copyCount": 1
4576+
"copyCount": 1
45774577
}
45784578
wait: Wait for inference component to be created before return. Optional. Default is
45794579
True.

0 commit comments

Comments
 (0)