-
-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce two different ways of logging calibration results: * As a 3 column table. benchmark_0 | strategy_0 | performance_00 benchmark_0 | strategy_1 | performance_01 benchmark_1 | strategy_0 | performance_10 benchmark_1 | strategy_1 | performance_11 * As a cartesian product of benchmark/strategy. In this case the performance is at intersection of particular benchmark and particular strategy. | | benchmark_0 | benchmark_1 | | strategy_0 | performance_00 | performance_01 | | strategy_1 | performance_10 | performance_11 | Benchmarks, strategies and performances are miltiline stringified dicts. This makes it easy to maintain the calibration logging for all new benchmarks/strategies as it only assumes implementing to_dict methods for them. Fixes #2012
- Loading branch information
1 parent
696da9e
commit 4022f5f
Showing
3 changed files
with
139 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters