A package for easily running experiments for different parameters and saving the results in a centralised database
- Create a local SQLite database to store the results of your experiment.
- Provides a standard structure for executing code across a range of parameters.
- Provides saving of results into the database using standard Julia types.
- Provides an
@execute
macro that will execute an experiment (consisting of many trials with different parameters). Can execute serially, or in parallel with a choice of multithreading or multiprocessing. - Automatically skips completed trials.
Head over to the Getting Started section of the documentation to see how to use this package.