Skip to main content

Mind Foundry Analyze Python Client

Project description

Mind Foundry Analyze is a Data Science workbench developed by Mind Foundry.

This Python client makes it easier to interact with the API and integrate with other Python libraries.

Quick start:

from mindfoundry.client.analyze import create_project_api_client

client = create_project_api_client(YOUR_INSTANCE_URL, YOUR_CLIENT_ID, YOUR_CLIENT_SECRET)
with open('./your-training-data.csv', 'rb') as data:
    data_set_id = client.create_file_data_set(data, 'Your Data Set Name', 'Your description')

model_id = client.create_classification_model('Your Model Name', data_set_id, 'Target Column')

with open('./your-prediction-data.csv', 'rb') as other_data:
    other_data_set_id = client.create_file_data_set(other_data, 'Prediction Data')

prediction_id = client.create_prediction(model_id, other_data_set_id, 'Your Prediction Name')

client.download_prediction_as_csv(prediction_id, './your-output-file.csv')

You can also create a data set from a Pandas DataFrame, or an array of dicts, or an array of arrays:

data_dicts = [{'a': 1, 'b': 2}, {'a': 3}, {'b': 4}]
client.create_file_data_set(data_dicts, 'Array of dicts')

df = pd.DataFrame(data_dicts)
client.create_file_data_set(df, 'Pandas DataFrame')

data_arrays = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
client.create_file_data_set(data_arrays, 'Array of arrays')

Project details


Download files

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

Source Distribution

mindfoundry.client.analyze-1.21.0.tar.gz (95.6 kB view details)

Uploaded Source

Built Distribution

mindfoundry.client.analyze-1.21.0-py3-none-any.whl (238.6 kB view details)

Uploaded Python 3

File details

Details for the file mindfoundry.client.analyze-1.21.0.tar.gz.

File metadata

File hashes

Hashes for mindfoundry.client.analyze-1.21.0.tar.gz
Algorithm Hash digest
SHA256 69e43cb523232a48c47c20acc5e8d4091f72975f618f59ce21588afe7c487249
MD5 ef2e2d0f192b648be7ebb2662b27e429
BLAKE2b-256 1f73281973266c38857c7e47457a29e0a3951a2746bb66d7845073668706d6f4

See more details on using hashes here.

File details

Details for the file mindfoundry.client.analyze-1.21.0-py3-none-any.whl.

File metadata

File hashes

Hashes for mindfoundry.client.analyze-1.21.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e282b0a7bd51769b096f200cfaf48c258b489363f5e4b50272854d294cbdcc9f
MD5 b2e5db64f51fad48d9d7ae036a75cab4
BLAKE2b-256 7a583d72b89b3a8ef9c32543357ece31dcafc0475ca80c296ed16a3f66f7d0ab

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