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
* Path to the buckets that contain one set of values to correlate. For syntax, see [buckets_path Syntax](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-pipeline.html#buckets-path-syntax).
29
+
* Path to the buckets that contain one set of values to correlate.
* Specifies the maximum number of feature importance values per document.
183
+
* @server_default 0
184
+
* @doc_id ml-feature-importance
182
185
*/
183
186
num_top_feature_importance_values?: integer
184
187
/** Specifies the type of the predicted field to write. Acceptable values are: string, number, boolean. When boolean is provided 1.0 is transformed to true and 0.0 to false. */
Copy file name to clipboardExpand all lines: specification/ml/_types/DataframeAnalytics.ts
+4-4
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ export class DataframeAnalyticsSource {
40
40
index: Indices
41
41
/**
42
42
* The Elasticsearch query domain-specific language (DSL). This value corresponds to the query object in an Elasticsearch search POST body. All the options that are supported by Elasticsearch can be used, as this object is passed verbatim to Elasticsearch. By default, this property has the following value: {"match_all": {}}.
* The configuration information necessary to perform outlier detection. NOTE: Advanced parameters are for fine-tuning classification analysis. They are set automatically by hyperparameter optimization to give the minimum validation error. It is highly recommended to use the default values unless you fully understand the function of these parameters.
* The configuration information necessary to perform regression. NOTE: Advanced parameters are for fine-tuning regression analysis. They are set automatically by hyperparameter optimization to give the minimum validation error. It is highly recommended to use the default values unless you fully understand the function of these parameters.
Copy file name to clipboardExpand all lines: specification/ml/_types/TrainedModel.ts
+3-3
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ export class TrainedModelStats {
41
41
inference_stats?: TrainedModelInferenceStats
42
42
/**
43
43
* A collection of ingest stats for the model across all nodes. The values are summations of the individual node statistics. The format matches the ingest section in Nodes stats.
ingest?: Dictionary<string,UserDefinedValue>// TODO -- this is not complete
47
47
}
@@ -53,7 +53,7 @@ export class TrainedModelInferenceStats {
53
53
inference_count: long
54
54
/**
55
55
* The number of times the model was loaded for inference and was not retrieved from the cache. If this number is close to the inference_count, then the cache is not being appropriately used. This can be solved by increasing the cache size or its time-to-live (TTL). See General machine learning settings for the appropriate settings.
/** The number of inference calls where all the training features for the model were missing. */
@@ -114,7 +114,7 @@ export class TrainedModelConfigMetadata {
114
114
exportclassHyperparameter{
115
115
/**
116
116
* A positive number showing how much the parameter influences the variation of the loss function. For hyperparameters with values that are not specified by the user but tuned during hyperparameter optimization.
* A query clause that retrieves a subset of data from the source index. See [QueryDSL](https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html).
47
+
* A query clause that retrieves a subset of data from the source index.
Copy file name to clipboardExpand all lines: specification/ml/get_trained_models/MlGetTrainedModelResponse.ts
-1
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,6 @@ import { integer } from '@_types/Numeric'
24
24
* Response codes
25
25
* 400 - If include_model_definition is true, this code indicates that more than one models match the ID pattern.
26
26
* 404 (Missing resources) - If allow_no_match is false, this code indicates that there are no resources that match the request or only partial matches for the request.
0 commit comments