Skip to main content

Vectice Python library

Project description

Enabling all enterprise’s AI/ML initiatives to result in consistent and positive impact. Data scientists deserve a solution that makes all their experiment reproducible, every asset discoverable and simplifies knowledge transfer. Managers deserve a dedicated data science solution. to secure knowledge, automate reporting and simplify reviews and processes.

Supported Python Versions

Python >= 3.7.1

Documentation

Official documentation for Vectice can be found at https://doc.vectice.com

Installing

To install Vectice without any extras and get started. The following code snippet can be used.

pip install vectice

To install Vectice with any extras and get started. The following code snippet can be used. All the provided extras can be found in the documentation.

pip install vectice[extra_required]

Getting Started

The following code is just an example to test that the Vectice SDK is working as it should be. You can use an IDE or a notebook to execute this code. It’s intializing a vectice object that connects to vectice. If everything is working as it should be you’ll recieve no errors.

from vectice import Vectice
Vectice = Vectice("Team Workspace 1", "Project 1")

The Vectice SDK leverages runs as the terminology used when capturing metadata from the work you do. Thus, if you want to clean data, for example, and capture what you’ve done, you would create the inputs of the data that will be cleaned, create a run and then start it. Then you’d perform the data cleaning.

from vectice import Experiment
experiment = Experiment("My Job", "Project 1", "Team Workspace 1", job_type=JobType.PREPARATION)
experiment.use_dataset_version(dataset="DATASET_NAME_IN_VECTICE_APP")
experiment.start()

Once you’ve performed the data cleaning or any other actions you end the run by simple creating outputs and then calling the complete method.

experiment.add_dataset_version(dataset="DATASET_NAME_IN_VECTICE_APP",...)
vectice.complete()

Auto versioning

The Vectice SDK enables you to leverage auto versioning for a variety of artifacts such as datasets, models and code. Below is an example of auto versioning your code, to find out more see code auto versioning.

experiment = Experiment("My Job", "Project 1", "Team Workspace 1", auto_code=True)
experiment.start()
experiment.complete()

Integrations

Vectice integrates with popular data science tools. There are already a few integrations and MLflow is just one example and the roadmap has more exciting integrations on the way. If you would like to see more, please refer to the integrations in the documentation

MLflow

The integration of MLflow with Vectice uses the Python context manager to easily leverage MLflow with the Vectice API. The MLflow metadata is leveraged by the Vectice API and autolog allows all the metadata to be captured. Furthermore, more parameters and metrics can be captured by using MLflow methods.

mlflow.autolog()
experiment = Experiment("My Job", "Project 1", "Team Workspace 1", auto_code=True, lib=MLFlowClient())

with experiment.start():
    mlflow.log_param("algorithm", "linear regression")
    mlflow.log_metric("MAE", MAE)

Examples

There is an examples repository dedicated to providing examples of how to leverage the Vectice SDK and Vectice App, you will find integration examples and ways to leverage Vectice in a standalone approach. This can be found in the vectice-examples repository.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vectice-22.4.2.0.tar.gz (101.7 kB view details)

Uploaded Source

Built Distribution

vectice-22.4.2.0-py2.py3-none-any.whl (137.6 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file vectice-22.4.2.0.tar.gz.

File metadata

  • Download URL: vectice-22.4.2.0.tar.gz
  • Upload date:
  • Size: 101.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for vectice-22.4.2.0.tar.gz
Algorithm Hash digest
SHA256 06496ba3c9f4acefc6deb44eac3f2d93e1fd77eff1bdb065884f64b3c055af9e
MD5 c7a3ccf66425d9011536533d855ab165
BLAKE2b-256 56972f80f869dd3a034c1aa52406f82527a88b3b5f9688c9e61ddcc818ad2b3a

See more details on using hashes here.

File details

Details for the file vectice-22.4.2.0-py2.py3-none-any.whl.

File metadata

  • Download URL: vectice-22.4.2.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 137.6 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for vectice-22.4.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 69a2af231547c44728e72b3442ce842ce4d483a239d3c37dc6f190199ab218fd
MD5 dad8e67f2615a553347cdc13bf52881c
BLAKE2b-256 b19ca16a543088897febffe7585e110a08e10b6a21223492e13c92a9f1ade788

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page