Skip to main content

Stock your experiments

Project description

[![wercker status](https://app.wercker.com/status/da135ca979d1a5dcb1ed72e2f5de1f65/s/master "wercker status")](https://app.wercker.com/project/byKey/da135ca979d1a5dcb1ed72e2f5de1f65) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/expstock/expstock) [![PyPI version](https://badge.fury.io/py/expstock.svg)](https://badge.fury.io/py/expstock) [![Maintainability](https://api.codeclimate.com/v1/badges/37c08a214b40cfdc9ac6/maintainability)](https://codeclimate.com/github/chie8842/expstock/maintainability)
# EXPSTOCK

**expstock** is a tool to manage results of experiments in machine learning, data analysis, simulation, etc.

When we try to integrate machine learning models or performe simulation using a mathematical model, we execute the same script or program many times with different parameters or logics.
In order to summalize or reproduce our experiments, it is necessary to take environmental information comprehensively.

expstock can automatically save environmental information with text files with adding simple implementation.

## Getting Started

expstock has mainly two functions.

* Saving logs as test files(Basic Usage)
* Log Visualization(Optional)

### Basic Usage

There are two implementation types.
The simplest way is to surround the target mothod with the decorator as below.

```
from expstock import expstock

e = expstock.ExpStock(exp_name='test_experiment', report=True, dbsave=True)
@expstock.expstock(e)
def run(a, b):
return a + b

e.append_param(a=a, b=b)
e.set_memo('This is the first experiment')
run(a, b)
```

But in case such as using Jupyter notebook, following implementation may be more convenient.

```
from expstock import expstock


e = expstock.ExpStock(dbsave=True)

e.append_param(a=a, b=b)
e.set_memo('This is the first experiment')
e.pre_stock()
result = a + b
e.result = result
e.post_stock()
```


#### Log Format

expstock saves environmental information with following directory structure. This is default setting, and we can change it.

```
experiments
├── <yyyymmdd_hhmmss>_<experiment_name>
│   ├── exec_time.txt
│   ├── git_diff.txt
│   ├── git_head.txt
│   ├── machine_info.txt
│   ├── memo.txt
│   ├── params.txt
│   ├── report.txt
│   ├── result.txt
│   ├── stderr.txt
│   └── stdout.txt

```

In the above, each file contains following information.

|file name | contents|user implementation|
|----------|---------|--------|
|exec_time.txt |start time, finish time, execution time of the experiment| - |
|git_diff.txt | result of `git diff`| - |
|git_head.txt |result of `git log -n 1 --format=%H`| - |
|machine_info.txt |machine info such as os version and hostname which can get with `platform` which is python builtin package| - |
|memo.txt |memo for each experiments. | e = ExpStock(memo = 'hoge') or e.set_memo(hoge) |
|params.txt |experiment parameter. | e = ExpStock(params=[{'a': a}, {'b': b }]) or e.apend_params(a=a, b=b))|
|result.txt|return value of the experiment| e.result = func() or automatically set when using decorator|
|stdout.txt|result of sys.stdout| - |
|stderr.txt|result of sys.stderr| - |
|report.txt|summary of above information. if specify `report=True` when create Expstock instance, it creates report.txt| - |

In addition, we can save other files such as machine learning models in same directory with a simple command.

```
from sklearn.externals import joblib
joblib.dump(model, e.log_dirname)
```

### Log Visualization

If you use `e = ExpStock(dbsave=True)`, some types of logs are save on not only text but also sqlite tables.
And now, this tool can visualize your experiments with `expstock-server`.

```
$ expstock-server
```

You can access expstock-server with **<server-ip>:8000**.

![expstock-server](./img/expstock-server.png)

## Getting expstock

### Requirements
No requirements for default usage(only text outputs).
If you use `dbsave` function and see logs on expstock dashboard, [sqlite](https://www.sqlite.org/index.html) is needed.


### Installation

You can get expstock from pypi.

```
pip install expstock
```

You can get source from github and build, too.

```
git clone https://github.com/chie8842/expstock
python setup.py install
```

## Contributing

Contribution is welcomed. Please feel free to write issues or talk to on [gitter](https://gitter.im/expstock/expstock).


Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

expstock-0.2-py3-none-any.whl (16.2 kB view details)

Uploaded Python 3

File details

Details for the file expstock-0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for expstock-0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 762db8f55f1ad103b68c8dc056994fd7cccee634577f656e95b666cf407e1074
MD5 397cc76cb719c7b3ea2f4573117b4349
BLAKE2b-256 b73421277a82f4f033087b23ef4c832cdeff35dcf37249a2e5a8a0dca3c58312

See more details on using hashes here.

Supported by

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