You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deeptables/models/deepmodel.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,8 @@ def __init__(self,
39
39
self.model_file=model_file
40
40
self.model=None
41
41
ifmodel_fileisnotNone:
42
-
self.model=load_model(model_file, dt_custom_objects) # fixme `load_model` executed multiple times in a process, resulting in a metric name rename to like auc_1, auc_2
42
+
self.model=load_model(model_file,
43
+
dt_custom_objects) # fixme `load_model` executed multiple times in a process, resulting in a metric name rename to like auc_1, auc_2
0 commit comments