Skip to main content

Mode Rage python client

Project description

Mode Rage client

PyPI version

What is ModeRage

ModeRage is a light-weight tool for storing experimental results and models. Experiments are referenced by their metacategory and id.

Meta Categories

Experiments in ModeRage have a meta-category, which basically defines the type of experiment. Think of meta-categories as an identifier for a project that may contain many experiments or datasets of the same type.

For example, when running many experiments with several sets of hyperparameters, those experiments will be saved into the same meta-category.

Ids

Once an experiment is saved it has an id. This can be used to load the experiment.

Configuration

ModeRage can be started in local or server mode.

Local

In local mode, ModeRage will save files locally to a ~/.moderage folder

Server

The ModeRage Server hosts experiments, data and metadata so it can be access from anywhere.

You can view it here (CURRENTLY UNDER DEVELOPMENT): Server

UI

The ModeRage UI communicates with the ModeRage server and allows browsing of experiments and data

You can view it here (CURRENTLY UNDER DEVELOPMENT): UI

Configuration file

Configuration in ModeRage is defined in a .mrconfig file. If no config file is created, ModeRage will automatically start in local Mode

Saving results

To save any number of files with some meta data you do the following:

1. Define a Meta object

mymeta = {
    'hyperparameter1': 100,
    'hyperparameter2': 200,
    'hyperparameter3': 0.7,
}

2. (Optional) Define any files you want to upload

myfiles = [
    {
        'filename': './path/to/myfile.csv',
        'caption': 'This is my file that contains my results'
    },
    {
        'filename': './path/to/mygraph.png',
        'caption': 'This is my file that contains my graph'
    },
    ...
]

4. (Optional) Reference any other experiments that this experiment is dependent on.

In many situations your experiment may rely on generated datasets or pre-trained models that also have many hyper-parameters. You can reference those parent experiments by adding them to the parent object

myparents = [
    {
        'id': [THE ID OF THE PARENT EXPERIEMENT],
        'metaCategory': 'generated_dataset'
    },
    {
        'id': [THE ID OF THE PARENT EXPERIEMENT],
        'metaCategory': 'pretrained_model'
    }
]

5. Call save

experiment = mr.save('category_name', mymeta, files=myfiles)

Loading results

Loading a saved experiment is simple, you just need to know the meta-category and the id of the experiment.

experiment = mr.load(id, meta_category)

Once the experiment is loaded, the meta information and files from the experiment can be accessed.

For example:

meta = experiment.meta
parents = experiment.parents
files = experiment.files

file = experiment.get_file('mygraph.png')

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

moderage-python-0.2.0.tar.gz (10.4 kB view details)

Uploaded Source

Built Distribution

moderage_python-0.2.0-py3-none-any.whl (12.6 kB view details)

Uploaded Python 3

File details

Details for the file moderage-python-0.2.0.tar.gz.

File metadata

  • Download URL: moderage-python-0.2.0.tar.gz
  • Upload date:
  • Size: 10.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for moderage-python-0.2.0.tar.gz
Algorithm Hash digest
SHA256 d8726ce546594f0e8b7567ab945c46b207e597c157a43459c98076523fb4d569
MD5 95b50fa192182faef92aa56d115fca93
BLAKE2b-256 6e97e059a09aa74eea7eec6a4d6335472d934c057c846e01a6715ea4ffe62355

See more details on using hashes here.

File details

Details for the file moderage_python-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: moderage_python-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 12.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for moderage_python-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4ad97d26331784db6e76a9682fad469384f174aa923907c860f68e5c2aef59d2
MD5 84f04dd5dd4f167fde5e539ad188c461
BLAKE2b-256 cee595b381e219cecb6c0db39cd43c1315905f3eaa1b6c41996183f25408a9a2

See more details on using hashes here.

Supported by

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