File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
src/vivarium_testing_utils/automated_validation Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 33
44
55class DataLoader :
6-
76 def __init__ (self , results_dir : str , cache_size_mb : int = 1000 ):
87 self .results_dir = results_dir
98 self .cache_size_mb = cache_size_mb
Original file line number Diff line number Diff line change 11from pathlib import Path
2- from vivarium_testing_utils .automated_validation .data_loader import DataLoader
3- from layered_config_tree import LayeredConfigTree
2+
43import pandas as pd
5- from vivarium_testing_utils .automated_validation .comparison import Comparison
4+ from layered_config_tree import LayeredConfigTree
5+
66from vivarium_testing_utils .automated_validation import plot_utils
7+ from vivarium_testing_utils .automated_validation .comparison import Comparison
8+ from vivarium_testing_utils .automated_validation .data_loader import DataLoader
79
810
911class ValidationContext :
10-
1112 def __init__ (self , results_dir : str | Path , age_groups : pd .DataFrame | None ):
1213 self .data_loader = DataLoader (results_dir )
1314 self .comparisons = LayeredConfigTree ()
Original file line number Diff line number Diff line change 1- from vivarium_testing_utils .automated_validation .comparison import Comparison
21import pandas as pd
32
3+ from vivarium_testing_utils .automated_validation .comparison import Comparison
4+
45
56def plot_comparison (comparison : Comparison , type : str , kwargs ):
67 pass
You can’t perform that action at this time.
0 commit comments