File tree Expand file tree Collapse file tree 3 files changed +13
-16
lines changed
feature_store/feature_processor Expand file tree Collapse file tree 3 files changed +13
-16
lines changed Original file line number Diff line number Diff line change 94
94
}
95
95
96
96
# Example configuration for intersphinx: refer to the Python standard library.
97
- intersphinx_mapping = {"http://docs.python.org/" : None }
97
+ intersphinx_mapping = {"python" : ( " http://docs.python.org/", None ) }
98
98
99
99
# -- Options for autodoc ----------------------------------------------------
100
100
# https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html#configuration
Original file line number Diff line number Diff line change @@ -45,8 +45,8 @@ def feature_processor(
45
45
46
46
If the decorated function is executed without arguments then the decorated function's arguments
47
47
are automatically loaded from the input data sources. Outputs are ingested to the output Feature
48
- Group. If arguments are provided to this function, then arguments are not automatically loaded
49
- (for testing).
48
+ Group. If arguments are provided to this function, then arguments are not automatically
49
+ loaded (for testing).
50
50
51
51
Decorated functions must conform to the expected signature. Parameters: one parameter of type
52
52
pyspark.sql.DataFrame for each DataSource in 'inputs'; followed by the optional parameters with
@@ -96,7 +96,6 @@ def transform(input_feature_group, input_csv):
96
96
development phase to ensure that data is not used until the function is ready. It also
97
97
useful for users that want to manage their own data ingestion. Defaults to True.
98
98
spark_config (Dict[str, str]): A dict contains the key-value paris for Spark configurations.
99
-
100
99
Raises:
101
100
IngestionError: If any rows are not ingested successfully then a sample of the records,
102
101
with failure reasons, is logged.
Original file line number Diff line number Diff line change @@ -4565,20 +4565,18 @@ def update_inference_component(
4565
4565
Args:
4566
4566
inference_component_name (str): Name of the Amazon SageMaker ``InferenceComponent``.
4567
4567
specification ([dict[str,int]]): Resource configuration. Optional.
4568
- Example: {
4569
- "MinMemoryRequiredInMb": 1024,
4570
- "NumberOfCpuCoresRequired": 1,
4571
- "NumberOfAcceleratorDevicesRequired": 1,
4572
- "MaxMemoryRequiredInMb": 4096,
4573
- },
4574
-
4568
+ Example: {
4569
+ "MinMemoryRequiredInMb": 1024,
4570
+ "NumberOfCpuCoresRequired": 1,
4571
+ "NumberOfAcceleratorDevicesRequired": 1,
4572
+ "MaxMemoryRequiredInMb": 4096,
4573
+ },
4575
4574
runtime_config ([dict[str,int]]): Number of copies. Optional.
4576
- Default: {
4577
- "copyCount": 1
4578
- }
4579
-
4575
+ Default: {
4576
+ "copyCount": 1
4577
+ }
4580
4578
wait: Wait for inference component to be created before return. Optional. Default is
4581
- True.
4579
+ True.
4582
4580
4583
4581
Return:
4584
4582
str: inference component name
You can’t perform that action at this time.
0 commit comments