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
<1> The unique identifier or alias for the trained model.
41
41
<2> The optional inference config which overrides the model's default settings
42
42
<3> Map the value of `avg_agg` to the model's input field `avg_cost`
43
43
@@ -47,7 +47,7 @@ A `inference` aggregation looks like this in isolation:
47
47
[options="header"]
48
48
|===
49
49
|Parameter Name |Description |Required |Default Value
50
-
| `model_id` | The ID of the model to load and infer against | Required | -
50
+
| `model_id` | The ID or alias for the trained model. | Required | -
51
51
| `inference_config` | Contains the inference type and its options. There are two types: <<inference-agg-regression-opt,`regression`>> and <<inference-agg-classification-opt,`classification`>> | Optional | -
52
52
| `buckets_path` | Defines the paths to the input aggregations and maps the aggregation names to the field names expected by the model.
53
53
See <<buckets-path-syntax>> for more details | Required | -
@@ -181,5 +181,5 @@ GET kibana_sample_data_logs/_search
181
181
182
182
<1> A composite bucket aggregation that aggregates the data by `client_ip`.
183
183
<2> A series of metrics and bucket sub-aggregations.
184
-
<3> {infer-cap} bucket aggregation that contains the model ID and maps the
184
+
<3> {infer-cap} bucket aggregation that specifies the trained model and maps the
Copy file name to clipboardExpand all lines: docs/reference/ingest/processors/inference.asciidoc
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ ingested in the pipeline.
17
17
[options="header"]
18
18
|======
19
19
| Name | Required | Default | Description
20
-
| `model_id` | yes | - | (String) The ID of the model to load and infer against.
20
+
| `model_id` | yes | - | (String) The ID or alias for the trained model.
21
21
| `target_field` | no | `ml.inference.<processor_tag>` | (String) Field added to incoming documents to contain results objects.
22
22
| `field_map` | no | If defined the model's default field map | (Object) Maps the document field names to the known field names of the model. This mapping takes precedence over any default mappings provided in the model configuration.
23
23
| `inference_config` | no | The default settings defined in the model | (Object) Contains the inference type and its options. There are two types: <<inference-processor-regression-opt,`regression`>> and <<inference-processor-classification-opt,`classification`>>.
0 commit comments