Overview

A Model is a project that manages several versions of a model asset created in Polyaxon or other system, it can:

  • have multiple versions.
  • be published publicly or privately within your organization.
  • define team and project level permissions.

Model project creation

You can version your models in each project or create a project to manage models from multiple projects using the CLI, API, or the UI.

model-create

Alternatively you can create a project using the CLI:

polyaxon project create --name OWNER_NAME/MODEL_NAME --description ... --tags tag1,tag2,...

And then configure the project features using the UI

model-features

Model overview

You can view a model overview using the project CLI or UI.

CLI

polyaxon project get -p OWNER_NAME/MODEL_NAME

UI

model-overview

Model versions

CLI

polyaxon models ls -p OWNER_NAME/MODEL_NAME --query ... --sort ...

UI

model-versions

Model admin

CLI

Updating

polyaxon project update [-p] [-ver]...

Deleting

polyaxon project delete [-p] [-ver]...

UI

You can manage a project(model) using the UI, you can also manage who can contribute and have access to the project and the model versions, as well as from which projects users are allowed to promote runs

model-admin