Welcome MLXP’s documentation!¶
MLXP (Machine Learning eXperimentalist for Python) package is an open-source Python framework for managing multiple experiments with a flexible option structure from launching, and logging to querying results. The source code is available in MLXP’s GitHub repository.
Key functionalities¶
Launching several jobs automatically using hydra and hierarchical configs by adding a single decorator to the main task function.
Logging outputs (metrics, artifacts, checkpoints) of a job in a uniquely assigned directory along with all metadata and configuration options to reproduce the experiment.
Code version management by automatically generating a deployment version of the code based on the latest git commit.
Submitting jobs to a cluster using a job scheduler.
Exploiting the results of several experiments by easily reading, querying, grouping, and aggregating the output of several jobs.
Features |
MLXP |
MLFlow tracking |
Weights & Biases |
---|---|---|---|
Configuration management |
|||
Hyperparameter Sweeps |
|||
Launching/Job submission |
|||
Logging/Tracking |
|||
Experiment Search/Filtering |
|||
Experiment Comparison |
|||
Lazy loading results |
|||
Code versioning |
|||
Code version checking |
|||
Model Versioning |
|||
Interactive Visualizations |
|||
Collaboration and Sharing |
License¶
MLXP is distributed under MIT license.
Citing MLXP¶
Even though this is non-legally binding, the author kindly ask users to cite MLXP in their publications if they use it in their research as follows:
@Misc{Arbel2023MLXP,
author = {Michael Arbel},
title = {MLXP: A framework for conducting machine learning experiments in python},
howpublished = {Github},
year = {2023},
url = {https://github.com/inria-thoth/mlxp}
}
Acknowledgments¶
I would like to acknowledge the following contributors for their contributions to the development of this package:
Alexandre Zouaoui kindly shared his python implementation for creating job scripts and submiting them to a cluster. His code served as the basis for the implementation of the Scheduler class. While the process of job submission significantly evolved, by integrating it with MLXpy’s launching functionality, I am grateful for Alexandre’s contribution which were invaluable to the development of this project.
Juliette Marrie tested a premature version of MLXP. I am grateful for her feedback which was extremetly helpful for shaping and improving MLXP’s functionalities.
Romain Ménégaux and Pierre Wolinski provided valuable feedback and suggestions to improve MLXP. They also found and reported several bugs in the software which helped improve its quality and stability.