We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f22e64 commit 4fc4bc7Copy full SHA for 4fc4bc7
1 file changed
tests/test_runs/test_converter/test_amltk.py
@@ -0,0 +1,17 @@
1
+import unittest
2
+
3
+import pandas as pd
4
5
+from deepcave.runs.converters.amltk import AMLTKRun
6
7
8
+class TestOptunaConverter(unittest.TestCase):
9
+ def setUp(self) -> None:
10
+ self.run_path = "logs/AMLTK/optuna_optimizer/run_1"
11
+ return pd.set_option("display.max_columns", None)
12
13
+ def testValidRun(self):
14
+ AMLTKRun.is_valid_run(self.run_path)
15
16
+ def testReadRun(self):
17
+ AMLTKRun.from_path(self.run_path)
0 commit comments