[66326d]: / tests / test_integration.py

Download this file

52 lines (39 with data), 877 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"""
Test suite.
"""
import unittest
BATCH_SIZES = (1, 10, 100)
SEQ_LENS = (4, 12, 48)
N_VARS = (2, 10, 100)
N_CLASSES = (2, 10)
N_LAYERS = (1, 2, 3, 4)
HIDDEN_SIZES = (32, 64, 128)
DEMOGRAPHICS = [
"age",
"gender",
"ethnicity",
"region",
"time_year",
"time_season",
"time_month",
]
OUTCOMES = ["ARF", "shock", "mortality"]
DATASETS = ["MIMIC", "eICU"]
class TestTrainingMethods(unittest.TestCase):
"""
Training tests.
"""
def ttest_hyperparamtune(self):
""" """
raise NotImplementedError
def ttest_traininggeneric(self):
""" """
raise NotImplementedError
def ttest_trainingrehearsal(self):
""" """
raise NotImplementedError
def ttest_trainingregularization(self):
""" """
raise NotImplementedError
if __name__ == "__main__":
unittest.main()