Skip to content

Commit

Permalink
Fix a swap of text for OutputModel and Model (#481)
Browse files Browse the repository at this point in the history
Fixes the swap in description, that is mentioned in #472
  • Loading branch information
Make42 authored Feb 16, 2023
1 parent bc06f92 commit c1dfa8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/clearml_sdk/model_sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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)

0 comments on commit c1dfa8a

Please sign in to comment.