Skip to content

Commit

Permalink
Add basic benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremykubica committed Oct 3, 2024
1 parent 133e4bd commit bd0cdec
Show file tree
Hide file tree
Showing 3 changed files with 97 additions and 22 deletions.
53 changes: 45 additions & 8 deletions benchmarks/benchmarks.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,53 @@
"""Two sample benchmarks to compute runtime and memory usage.
"""Benchmarks to compute runtime and memory usage of core functions.
To manually run the benchmarks use: asv run
For more information on writing benchmarks:
https://asv.readthedocs.io/en/stable/writing_benchmarks.html."""

from resspect import example_benchmarks
from pathlib import Path
import tempfile

from resspect import fit_snpcc
from resspect.learn_loop import learn_loop


_TEST_DATA_DIR = Path(__file__).parent.parent / "data" / "tests"


def time_feature_creation():
"""Benchmark how long it takes to read the example files and generate features."""
input_file_path = _TEST_DATA_DIR / "DES_data"
with tempfile.TemporaryDirectory() as dir_name:
features_file = Path(dir_name) / "Malanchev.csv"
fit_snpcc(
path_to_data_dir=input_file_path,
features_file=str(features_file),
feature_extractor="malanchev"
)

def time_computation():
"""Time computations are prefixed with 'time'."""
example_benchmarks.runtime_computation()
def time_learn_loop(ml_model, strategy):
"""Benchmark how long it takes for a run of the learning loop."""
# Use the precomputed features so we don't time their creation.
features_file = str(_TEST_DATA_DIR / "test_features.csv")
with tempfile.TemporaryDirectory() as dir_name:
metrics_file = str(Path(dir_name) / "metrics.csv")
output_queried_file = str(Path(dir_name) / "queried.csv")
learn_loop(
nloops=25,
features_method="malanchev",
classifier=ml_model,
strategy=strategy,
path_to_features=features_file,
output_metrics_file=metrics_file,
output_queried_file=output_queried_file,
training="original",
batch=1,
)


def mem_list():
"""Memory computations are prefixed with 'mem' or 'peakmem'."""
return example_benchmarks.memory_computation()
# Parameterize the ML models and strategies we benchmark.
time_learn_loop.params = [
["RandomForest", "KNN"], # The different ML methods
["RandomSampling", "UncSampling"], # The different strategies.
]
Loading

0 comments on commit bd0cdec

Please sign in to comment.