Capture code versions and model dependencies
Capture code versions
You can log and track the exact version of the model code of Registered Model Version.
If a model is registered via experiment run, the code version logged will automatocally be synced in model registry
If you are directly registering a model, you can log code version by capturing metadata about the git commit with the specified
branch
,tag
, orcommit_hash
.
Here is the example to automatically capture git commit information:
Here is the example to manually provide git commit information if Verta system does not have access to git:
Capture OS level dependencies
Capturing OS level dependencies are helpful in the following scenario:
If you have a python dependency that requires a specific package to be installed on the image to build or to run (e.g. GCC)
If you need a specific version of a package that for python dependency and python doesn't have a way to specify OS-level dependencies
Here is the example to capture OS level dependencies (e.g. for computer vision models):
Last updated