Created
November 7, 2022 18:39
-
-
Save joshreini1/bf98051a3a9887609a30dfbfc59c45d6 to your computer and use it in GitHub Desktop.
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
data_collections = tru.get_data_collections() | |
for dc in data_collections: | |
tru.set_data_collection(dc) | |
data_splits = ["train","2010","2011","2012","2013","2014","2015","2016"] | |
ref_model = "linear_" + dc | |
for split in data_splits: | |
tru.tester.add_performance_test( | |
data_split_name = split, | |
metric = 'AUC', | |
warn_threshold_type = "ABSOLUTE", #this is default, specifying for clarity | |
warn_if_less_than = 0.80, #treshold is reference model perf + value | |
fail_threshold_type = "RELATIVE", | |
fail_if_less_than = 0, | |
reference_model_name = ref_model #set model to test against | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment