A lightweight Python library for representing and managing machine learning experiments with class-based definitions. Current version 0.8, updated infrequently.
pip install xpflowNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Define an experiment as a class inheriting from Experiment, then call run() to execute.
Always annotate fields with types (e.g., int, str, float).
Instantiate the experiment class before passing to run: run(MyExperiment())
Remove @sequential decorator; use class-based inheritance instead.
No dependency data recorded yet.