Client library for using Snitch AI's model validation platform
Project description
Snitch AI Python Client Library
This library is used to perform Snitch AI analyses in a programmatic manner. This allows for easier upload to the Snitch AI platform without having to use the UI. Additionally, this library can facilitate integration with existing MLOps pipelines and external reporting tools.
Usage:
Generate a quality report
import snitch_ai
# you can specify the access_token in code or set the SNITCH_ACCESS_TOKEN environment variable
snitch_ai.access_token = "VGhpcyBpcyBub3QgYW4gYWN0dWFsIGFjY2VzcyB0b2tlbi4gVG8gZ2V0I..."
project = snitch_ai.select_project("My First Project")
quality = project.run_quality_analysis(model, train_x, train_y, test_x, test_y)
json = quality.get_json()
quality.save_pdf("My Quality Report.pdf")
Generate a drift report
import snitch_ai
# you can specify the access_token in code or set the SNITCH_ACCESS_TOKEN environment variable
snitch_ai.access_token = "VGhpcyBpcyBub3QgYW4gYWN0dWFsIGFjY2VzcyB0b2tlbi4gVG8gZ2V0I..."
project = snitch_ai.select_project("My First Project")
drift = project.run_drift_analysis(train_x, updated_x)
json = drift.get_json()
drift.save_pdf("My Drift Report.pdf")
Usage within a hybrid environment
Snitch AI can also be used in a hybrid environment. This gives you the full power of Snitch AI's analysis engine without needing to upload your models or datasets to the cloud. If your internal security policy forbids uploading your data to a public cloud, this will likely be your preferred method of using Snitch AI.
You can learn more about Snitch AI Hybrid here: https://www.snit.ch/hybrid/
import snitch_ai
# replace this address with the address of your on-premises Snitch AI environment
# you can also set this in the SNITCH_ENDPOINT_ADDRESS environment variable
snitch_ai.endpoint_address = "https://localhost:5443/"
# you can specify the access_token in code or set the SNITCH_ACCESS_TOKEN environment variable
snitch_ai.access_token = "VGhpcyBpcyBub3QgYW4gYWN0dWFsIGFjY2VzcyB0b2tlbi4gVG8gZ2V0I..."
# perform quality or drift analysis per usual
Full product documentation can be found at https://help.snit.ch/
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
Built Distribution
File details
Details for the file snitch_ai-1.1.13.tar.gz
.
File metadata
- Download URL: snitch_ai-1.1.13.tar.gz
- Upload date:
- Size: 10.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5134fec776de9329b2cd0706a39ff1c3ed04f3dbdae75b318afaf23a720b707 |
|
MD5 | a743c5f9448146eaca184b2bbe310623 |
|
BLAKE2b-256 | ca96920e7dc5776a0723d5fd8b83cefc2a8ebbc3090f36d42c04e3ec435513cf |
File details
Details for the file snitch_ai-1.1.13-py3-none-any.whl
.
File metadata
- Download URL: snitch_ai-1.1.13-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b129ae19cf5cfd77f8597e796d2b83dd94657c094fc42c641c3400964e5bd260 |
|
MD5 | d344cc0f34de6038a01a4ef1ede6595c |
|
BLAKE2b-256 | 79e7a0eac060967f07145aa0130ea87dea42fcf260224fa8f68073402dfa8b23 |