Skip to main content

Diary to create notebooks and store intermediate results and figures

Project description

DiaryPy

Build Status

Create a new diary

diary = Diary(name='world', path='hello', overwrite=False)

Create all the notebooks that you want to use

diary.add_notebook('validation')
diary.add_notebook('test')

Store your results in the different notebooks

diary.add_entry('validation', ['accuracy', 0.3])
diary.add_entry('validation', ['accuracy', 0.5])
diary.add_entry('validation', ['accuracy', 0.9])
diary.add_entry('test', ['First test went wrong', 0.345, 'label_1'])

Add some image

image = Image.new(mode="1", size=(16,16), color=0)
diary.save_image(image, filename='test_results')

Resulting files

The files that are generated after executing the previous lines are

hello/
└── world
    ├── description.txt
    ├── images
    │   └── test_results_4.png
    ├── test.csv
    └── validation.csv

the content of the files is

description.txt

Date: 2015-10-22 17:43:19.764797
Name : world
Path : hello/world
Overwrite : False
Image_format : png

validation.csv

1,1,|2015-10-22|,|17:43:19.765404|,|accuracy|,0.3
2,2,|2015-10-22|,|17:43:19.765509|,|accuracy|,0.5
3,3,|2015-10-22|,|17:43:19.765576|,|accuracy|,0.9

test.csv

4,1,|2015-10-22|,|17:43:19.765657|,|First test went wrong|,0.345,|label_1|

Unittest

python -m unittest discover diarypy

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

diarypy-0.4.2.tar.gz (5.5 kB view hashes)

Uploaded Source

Built Distribution

diarypy-0.4.2-py3-none-any.whl (7.6 kB view hashes)

Uploaded 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