- Release Notes
- Getting started
- Notifications
- Projects
- Datasets
- Data Labeling
- ML packages
- Out of the box packages
- Pipelines
- ML Skills
- ML Logs
- Document UnderstandingTM in AI Center
- AI Center API
- Licensing
- AI Solutions Templates
- How to
- Basic Troubleshooting Guide
Managing ML packages
.zip
file against the requirements described here. The following three checks are performed:
- A non-empty root folder exists.
- A requirements.txt file exists.
- A file named main.py exists in the root folder which implements a class Main. The class is further validated to implement an
__init__
and apredict
function.
Success or failure along with any errors that caused it are shown on the ML Logs page.
.zip
file against the requirements described here. For these packages the following two checks are performed:
- A non-empty root folder exists.
- A file named train.py exists in the root folder which implements a class Main. The class is further validated to implement an
__init__
function and the following functions:train
,evaluate
, andsave
.
Success or failure along with any errors that caused it are shown on the ML Logs page.
Click a package in the list to navigate to its ML Package > [ML Package Name] page.
In the Version tab, view its details: package version, creation time, change log, status, whether or not training is enabled, whether or not recommended GPU is enabled, and arguments.
You can find more information on each entry in the ML Packages Version by clicking on the ⁝ icon and then Details. A dialog box will be displayed with all the information on the package version.
In the Pipeline runs tab, view the details related to the package's pipeline runs: package name, type, version, status, creation time, duration, score, and additional details.
AI Center also supports versioning and version management of packages. When a package is uploaded, it's displayed as version 1.0 of that package (we say it's Major Version is 1, and Minor Version is 0). This helps with differentiating between packages uploaded by users, and packages retrained via pipelines, the latter only changing their minor version.
Follow these steps to upload a new version for an already uploaded package:
The new version of the package is not visible directly in the ML Packages page. You can view its information within the ML Package Details page for that package.
When a training pipeline or a full pipeline executes successfully on a package version, a new minor version is created. For example, if I have uploaded a package (version 1.0), and start a training pipeline, version 1.1 is displayed after completion in the ML Package Details page as below:
In the ML Package > [ML Package Name] page Version tab, click the information icon next to a package version. The Arguments for > [ML Package Name] > [ML Package Version] window is displayed.
The input type, and the input and output descriptions of the selected package version are displayed. Please note that you cannot edit the values.
Packages can only be deleted if they are not deployed within a skill and no pipelines are currently running on those packages.
- In the ML Packages page, click ⁝ next to a package and select Delete undeployed versions. A confirmation window is displayed.
- In the confirmation window, click OK to delete all undeployed versions of the selected package. If a package version is part of a skill (it is active), it is NOT going to be deleted. If all the versions are inactive, they are all deleted.
OR
- In the ML Package > [ML Package Name] page Version tab, click ⁝ next to a package version and select Delete. A confirmation window is displayed.
- In the confirmation window, click OK to delete the selected version of the package. If a package version is part of a skill (it is active), it is NOT going to be deleted. If this is the only version for the selected package, the package itself is also deleted.