-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Result loading and evaluation V1 (#135)
* result loading and evaluation v1 * [pre-commit.ci lite] apply automatic fixes * more result loading and evaluation * bound * fix * cd dias * time fix and resamples * remade test results * sorting an verify parameter * sorting an verify parameter * close enough * fixes * figure start * no boxplot * no boxplot * fixes * fixes * allow for multiple load paths * email --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
- Loading branch information
1 parent
aea95ef
commit b34e333
Showing
242 changed files
with
43,471 additions
and
698 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
"""Main configuration file for pytest.""" | ||
|
||
__author__ = ["MatthewMiddlehurst"] | ||
|
||
from tsml_eval.experiments import experiments | ||
|
||
|
||
def pytest_addoption(parser): | ||
"""Pytest command line parser options adder.""" | ||
parser.addoption( | ||
"--meminterval", | ||
type=float, | ||
default=5.0, | ||
help="Set the time interval in seconds for recording memory usage " | ||
"(default: %(default)s).", | ||
) | ||
|
||
|
||
def pytest_configure(config): | ||
"""Pytest configuration preamble.""" | ||
experiments.MEMRECORD_INTERVAL = config.getoption("--meminterval") |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.