Skip to main content

expnbk provides a class for creating an experiment with its own results directory that automatically contains a copy of the code used to run the experiment. Super useful for reproducibility.

Project description

Experiment_Notebook

PyPI Version Supported Python Versions

expnbk provides a class for creating an experiment with its own results directory that automatically contains a copy of the code used to run the experiment. Super useful for reproducibility.


Installation

To install Experiment_Notebook, run this command in your terminal:

$ pip install -U expnbk

This is the preferred method to install Experiment_Notebook, as it will always install the most recent stable release.

If you don't have pip installed, these installation instructions can guide you through the process.

Quick Start

The expnbk package provides a class Experiment. Upon instantiation, it takes a snapshot of the current working directory and saves all files into a results/current_time folder within the current directory (see Usage for variations). It also provides functions that automatically save figures to the same output directory. Check out the following example and you shall see similar changes in your directories.

$ tree
    .
    ├── file1        
    └── dir1
        └── file2
>>> from expnbk import Experiment
>>> exp = Experiment()
>>> fig = exp.figure()
>>> fig.savefig("image1.png") 
$ tree
    .
    ├── file1
    ├── dir1
    │   └── file2
    └── results
        └── 2020-12-31_123006
            ├── <project_name>
            │   ├── file1
            │   └── dir1
            │       └── file2
            └── image1.png

Usage

  • Import the expnk package:
>>> from expnbk import Experiment
  • Create an Experiment class with attributes:
>>> exp = Experiment(expname='some_experiemnt', results_dir='path_to_results_directory', copy_code=True, ignore_dirs=None):

expname: str, optional

A name identifying the type of experiment run.

results_dir : str, optional

Path to the desired results directory for storing experiment details.

copy_code : bool, optional

Should the experiment results include the code used to generate them?

ignore_dirs : list(str), optional

Any directories that should not be copied with the code.

  • Save figures to the same output directory as above:
>>> fig = exp.figure() //Get a matplotlib figure
>>> fig.savefig("image1.png") //`savefig` function will put it in the experiment directory

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

expnbk-0.0.3.tar.gz (5.2 kB view hashes)

Uploaded Source

Built Distribution

expnbk-0.0.3-py2.py3-none-any.whl (5.3 kB view hashes)

Uploaded Python 2 Python 3

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