Skip to content

Commit

Permalink
fix: failing sphinx tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mufiAmazon committed Jan 10, 2024
1 parent cf80af5 commit 8b26b54
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ def transform(input_feature_group, input_csv):
inputs (Sequence[Union[FeatureGroupDataSource, CSVDataSource, ParquetDataSource,
BaseDataSource]]): A list of data sources.
output (str): A Feature Group ARN to write results of this function to.
target_stores (Optional[list[str]], optional): A list containing at least one of
'OnlineStore' or 'OfflineStore'. If unspecified, data will be ingested to the enabled
stores of the output feature group. Defaults to None.
target_stores (Optional[list[str]], optional): A list containing at least one
of 'OnlineStore' or 'OfflineStore'. If unspecified, data will be ingested to the
enabled stores of the output feature group. Defaults to None.
parameters (Optional[Dict[str, Union[str, Dict]]], optional): Parameters to be provided to
the decorated function, available as the 'params' argument. Useful for parameterized
functions. The params argument also contains the set of system provided parameters
Expand All @@ -96,6 +96,7 @@ def transform(input_feature_group, input_csv):
development phase to ensure that data is not used until the function is ready. It also
useful for users that want to manage their own data ingestion. Defaults to True.
spark_config (Dict[str, str]): A dict contains the key-value paris for Spark configurations.
Raises:
IngestionError: If any rows are not ingested successfully then a sample of the records,
with failure reasons, is logged.
Expand Down
10 changes: 5 additions & 5 deletions src/sagemaker/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -4566,14 +4566,14 @@ def update_inference_component(
inference_component_name (str): Name of the Amazon SageMaker ``InferenceComponent``.
specification ([dict[str,int]]): Resource configuration. Optional.
Example: {
"MinMemoryRequiredInMb": 1024,
"NumberOfCpuCoresRequired": 1,
"NumberOfAcceleratorDevicesRequired": 1,
"MaxMemoryRequiredInMb": 4096,
"MinMemoryRequiredInMb": 1024,
"NumberOfCpuCoresRequired": 1,
"NumberOfAcceleratorDevicesRequired": 1,
"MaxMemoryRequiredInMb": 4096,
},
runtime_config ([dict[str,int]]): Number of copies. Optional.
Default: {
"copyCount": 1
"copyCount": 1
}
wait: Wait for inference component to be created before return. Optional. Default is
True.
Expand Down

0 comments on commit 8b26b54

Please sign in to comment.