This project is an local experiment record manager for python based on SQLite DMS, suitable for recording experiment and analysing experiment data with a web UI, which can help you efficiently save your experiment settings and results for later analysis.
Project description
PyERM (Python Experiment Record Manager)
This project is an experiment record manager for python based on SQLite DMS, which can help you efficiently save your experiment settings and results for later analysis.
In the current version, all operations will be performed locally.
Introduction
This project is used to save the settings and results of any experiment consists of three parts: method, data, task.
Besides, the basic information and detail information of the experiment will also be recorded.
All data you want can be efficiently saved by API provided without knowing the detail implement, but I suggest reading the table introduction for further dealing with the records.
Install Introduction
All you need to do for using the python package is using the following command:
pip install pyerm
Workflow Introduction
Table Define & Init
Before starting the experiment, you need to init the tables you need for the experiment by three init function: data_init()
, method_init()
, task_init()
.
You need to input the name and experiment parameter for the first two. The function can automatically detect the data type, and they will create the table if not exist. If you want to define the DMS type yourself, you can input a param_def_dict
to these function, whose key means column name, and value means column SQL type define, like {"people", "TEXT DEFAULT NULL"}
.
Experiment
The experiment recorder mainly consists of four parts, experiment_start()
, experiment_over()
, experiment_failed()
, detail_update()
. From the name of these function, you can easily know where and how to use them.
experiment_start()
saves the basic experiment information before experiment formally starts and will set the experiment status to running.
experiment_over()
saves the experiment results after experiment ends and will set the experiment status to over.
experiment_failed()
saves the reason why experiment failed and will set the experiment status to failed.
detail_update()
saves the intermediate results. It's optional, and if you never use it and don't manually set the define dict, the detail table may not be created.
Scripts Introduction
export_xls
Export the content of a SQLite database to an Excel file
export_xls db_path(default ~/experiment.db) output_path(default ./experiment_record.xls)
db_merge
Merge two SQLite databases.
db_merge db_path_destination db_path_source
Table Introduction
Experiment Table
All experiments' basic information will be recorded in the experiment_list table. It contains the description of the method, the method (with its setting id) & data (with its setting id) & task, the start & end time of the experiment, useful & total time cost, tags, experimenters, failure reason and the experiment status, each experiment is identified by the experiment id.
Method Table
Each Method Table is identified by its corresponding method name, and any different method will be assigned a different table for saving its different parameter setting, such as method-specific hyper-parameters, etc. The table is used to save different parameter for every method.
The only necessary column for method table is the method setting id, which will be set automatically, other specific column is set by users.
Data Table
Each Data is identified by its corresponding data name, and any different data will be assigned a different table for saving its different parameter setting, such as data-specific preprocess parameters, etc. The table is used to save different parameter for every data.
The only necessary column for method table is the data setting id, which will be set automatically, other specific column is set by users.
Result Table
Each Result Table is identified by its corresponding task name, and different tasks will be assigned with different tables for saving its different experiment results, such as accuracy for classification, normalized mutual information for clustering.
Besides, this table offers several columns for saving image in order for latter visualization.
The only necessary column for result table is the experiment id, other specific column is set by users.
Detail Table
Each Detail Table is identified by its corresponding method name, different methods are related to different detail table. During an experiment, you may need to record some intermediate results, which can be saved in this table.
The only necessary column for detail table is the detail id (which can be set automatically) and the experiment id, other specific column is set by users.
Future Plan
- Some Scripts For Better Usage
- Experiment Summary Report Generate
- Web UI Visualize & Commonly Used Analyze Fuctions
Contact
My email is yx_shao@qq.com. If you have any question or advice, please contact me.
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 pyerm-0.2.3.tar.gz
.
File metadata
- Download URL: pyerm-0.2.3.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50df039c834a98114657cc5c86ae88e728d1817aae27f089e08a5f4d93a52e82 |
|
MD5 | b622a39a91494ffc74786c45272a7271 |
|
BLAKE2b-256 | 4b641722d832c5a7afcc70a7baf222da240247e4f2b44d62066e24c9f5b4e601 |
File details
Details for the file pyerm-0.2.3-py3-none-any.whl
.
File metadata
- Download URL: pyerm-0.2.3-py3-none-any.whl
- Upload date:
- Size: 21.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d795a73bf3363c44f779199d88c7c54c5bebc3ef0d9043c0781287a2af81026f |
|
MD5 | cabc3a970f4467a16a6e4e91926c9ca0 |
|
BLAKE2b-256 | 6ce67a348184a6a809563d569927e32ca124c986537594830a76250318755196 |