From c1dfa8ae31e4c9e614656b79eedf916c56539a28 Mon Sep 17 00:00:00 2001 From: Make42 Date: Thu, 16 Feb 2023 19:59:23 +0100 Subject: [PATCH] Fix a swap of text for OutputModel and Model (#481) Fixes the swap in description, that is mentioned in https://github.com/allegroai/clearml-docs/issues/472 --- docs/clearml_sdk/model_sdk.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/clearml_sdk/model_sdk.md b/docs/clearml_sdk/model_sdk.md index 3f61e7b8..9969b278 100644 --- a/docs/clearml_sdk/model_sdk.md +++ b/docs/clearml_sdk/model_sdk.md @@ -5,9 +5,9 @@ title: Model The following page provides an overview of the basic Pythonic interface to ClearML Models. ClearML provides the following classes to work with models: -* `Model` - represents an experiment's output model (training results). An OutputModel is always connected to a [task](../fundamentals/task.md). +* `Model` - represents a ClearML model, regardless of any task connection. * `InputModel` - represents an existing ClearML model to be used in an experiment. -* `OutputModel` - represents a ClearML model, regardless of any task connection. +* `OutputModel` - represents an experiment's output model (training results). An OutputModel is always connected to a [task](../fundamentals/task.md). ## Output Models @@ -132,4 +132,4 @@ model_list = Model.query_models( For information about all model methods, see the following SDK reference pages: * [Model](../references/sdk/model_model.md) * [InputModel](../references/sdk/model_inputmodel.md) -* [OutputModel](../references/sdk/model_outputmodel.md) \ No newline at end of file +* [OutputModel](../references/sdk/model_outputmodel.md)