Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
rvandewater committed Oct 15, 2024
1 parent f93d9fb commit 786e256
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion icu_benchmarks/cross_validation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import json
import pickle
from datetime import datetime
import logging
import gin
Expand Down Expand Up @@ -104,7 +105,10 @@ def execute_repeated_cv(
runmode=mode,
complete_train=complete_train
)

# logging.debug(f"{data}")
# data_pickle_path = log_dir / "data.pkl"
# with open(data_pickle_path, "wb") as f:
# pickle.dump(data, f, pickle.HIGHEST_PROTOCOL)
preprocess_time = datetime.now() - start_time
start_time = datetime.now()
agg_loss += train_common(
Expand Down

0 comments on commit 786e256

Please sign in to comment.