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
This commit is contained in:
Make42 2023-02-16 19:59:23 +01:00 committed by GitHub
parent bc06f92614
commit c1dfa8ae31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
* [OutputModel](../references/sdk/model_outputmodel.md)