Client interface for twinLab machine-learning in the cloud.
Project description
twinLab Client
Headless interface to the twinLab
library.
Installation
Most users should use pip
pip install twinlab
If you want to modify the client-side code, or have a local installation, you will need to have git
, poetry
, and a python
version of 3.9
or higher installed. Then you can do:
git clone https://github.com/digiLab-ai/twinLab-client.git
cd twinlab-client
poetry install
Environment setup
You will need a .env
file in your project directory that looks like the .env.example
file in this repository
cp .env.example .env
and fill in your twinLab
user details.
Commands
Pipeline
poetry run python scripts/twinlab/test.py
where test.py
can be replaced with any of the scripts in the scripts
directory.
Individual examples
Get user information:
poetry run python scripts/twinlab/get_user.py
Get version information:
poetry run python scripts/twinlab/get_versions.py
List datasets:
poetry run python scripts/twinlab/list_datasets.py
Upload dataset:
poetry run python scripts/twinlab/upload_dataset.py <path/to/dataset.csv> <dataset_id>
poetry run python scripts/twinlab/upload_dataset.py resources/datasets/biscuits.csv biscuits
View dataset:
poetry run python scripts/twinlab/view_dataset.py <dataset_id>
poetry run python scripts/twinlab/view_dataset.py biscuits
Summarise a dataset:
poetry run python scripts/twinlab/summarise_dataset.py <dataset_id>
poetry run python scripts/twinlab/summarise_dataset.py biscuits
List campaigns:
poetry run python scripts/twinlab/list_campaigns.py
Train campaign:
poetry run python scripts/twinlab/train_campaign.py <path/to/parameters.json> <campaign_id> <processor>
poetry run python scripts/twinlab/train_campaign.py resources/campaigns/biscuits/params.json biscuits-campaign
Get campaign status:
poetry run python scripts/twinlab/status_campaign.py <campaign_id>
poetry run python scripts/twinlab/status_campaign.py biscuits-campaign
Summarise campaign:
poetry run python scripts/twinlab/summarise_campaign.py <campaign_id>
poetry run python scripts/twinlab/summarise_campaign.py biscuits-campaign
Predict using a trained campaign:
poetry run python scripts/twinlab/predict_campaign.py <path/to/inputs.csv> <campaign_id> <method> <processor>
poetry run python scripts/twinlab/predict_campaign.py resources/campaigns/biscuits/eval.csv biscuits-campaign
Delete a campaign:
poetry run python scripts/twinlab/delete_campaign.py <campaign_id>
poetry run python scripts/twinlab/delete_campaign.py biscuits-campaign
Delete a dataset:
poetry run python scripts/twinlab/delete_dataset.py <dataset_id>
poetry run python scripts/twinlab/delete_dataset.py biscuits
Full example
Here we create some mock data (which has a quadratic relationship between X
and y
) and use twinLab
to create a surrogate model with quantified uncertainty.
# Import libraries
import twinlab as tl
import pandas as pd
# Create a dataset and upload to twinLab cloud
df = pd.DataFrame({"X": [1, 2, 3, 4], "y": [1, 4, 9, 16]})
tl.upload_dataset(df, "test-data")
# Train a machine-learning model for the data
params = {
"dataset_id": "test-data",
"inputs": ["X"],
"outputs": ["y"],
}
tl.train_campaign(params, campaign_id="test-model")
# Evaluate the model on some unseen data
df = pd.DataFrame({"X": [1.5, 2.5, 3.5]})
df_mean, df_std = tl.predict_campaign(df, campaign_id="test-model")
Notebooks
Check out the notebooks
directory for some additional examples to get started!
Documentation
See the live documentation at https://digilab-ai.github.io/twinLab-client/. Or build a copy locally:
cd docs
yarn install && yarn start
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 twinlab-1.2.0.tar.gz
.
File metadata
- Download URL: twinlab-1.2.0.tar.gz
- Upload date:
- Size: 10.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.3 Darwin/22.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca57fc98b0850ce0717e0f2ae5fe5f4d2205f1876de98009f822135caed577e8 |
|
MD5 | bb91994f9b985ea2cebefa88a7833d8a |
|
BLAKE2b-256 | 54685806b7df198cd7c0e3c7e0ff565999a1700a0e46991e114a8a01def34453 |
File details
Details for the file twinlab-1.2.0-py3-none-any.whl
.
File metadata
- Download URL: twinlab-1.2.0-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.3 Darwin/22.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c60b28ae3ced3948ba69168aa2257da91d2fc19d435cd36ff273074b144b9894 |
|
MD5 | 642e656d86c55dab9255de7a8f84d1b4 |
|
BLAKE2b-256 | 564cd23a5d85ac7ca1330cf4d918a22099c0e89ad36eb84eb677cd3978b9f5eb |