Rewrite model class descriptions (#479)

This commit is contained in:
pollfly 2023-02-19 10:02:47 +02:00 committed by GitHub
parent c1dfa8ae31
commit 51f4a04183
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,9 +5,11 @@ 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 a ClearML model, regardless of any task connection.
* `InputModel` - represents an existing ClearML model to be used in an experiment.
* `OutputModel` - 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. Use this class to programmatically access and manage the ClearML model store.
* `InputModel` - Represents an existing ClearML model to be used in an experiment. Use this class to load a model from ClearML's model store or to import a pre-trained
model from an external resource to use as an experiment's initial starting point.
* `OutputModel` - Represents an experiment's output model (training results). An OutputModel is always connected to a [task](../fundamentals/task.md),
so the models are traceable to experiments.
## Output Models