Browse Source

[ML] [DOCS] Update the model part upload URL in example (#80181)

David Kyle 4 years ago
parent
commit
58a517309a

+ 4 - 4
docs/reference/ml/df-analytics/apis/put-trained-model-definition-part.asciidoc

@@ -58,14 +58,14 @@ The total number of parts that will be uploaded. Must be greater than 0.
 The following example creates a model definition part for a previously
 stored model configuration. The definition part is stored in the index
 that is configured by the `location.index.name`.
- 
 
-NOTE: The value of the `definition` object is elided from the example 
+
+NOTE: The value of the `definition` object is elided from the example
 as it is a very large base64 encoded string.
 
 [source,console]
 --------------------------------------------------
-PUT _ml/trained_models/elastic__distilbert-base-uncased-finetuned-conll03-english/part/0
+PUT _ml/trained_models/elastic__distilbert-base-uncased-finetuned-conll03-english/definition/0
 {
     "definition": "...",
     "total_definition_length": 265632637,
@@ -81,4 +81,4 @@ The API returns the following results:
 {
     "acknowledged": true
 }
-----
+----