Skip to content

Commit

Permalink
Adjustment of test for better debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardObi committed Nov 28, 2023
1 parent f7e622f commit c4f53a4
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions tests/test_model_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,18 @@


# Set the logging level depending on the level of detail you would like to have in the logs while running the tests.
LOGGING_LEVEL = logging.INFO # WARNING # logging.INFO
LOGGING_LEVEL = logging.DEBUG # WARNING # logging.INFO

models_with_args = [
(
"00023_PIX2PIXHD_BREAST_DCEMRI",
{
"input_path": "input",
"gpu_id": 0,
"image_size": 448,
},
3,
),
(
"00001_DCGAN_MMG_CALC_ROI",
{},
Expand Down Expand Up @@ -88,15 +97,6 @@
3,
),
("00022_WGAN_CARDIAC_AGING", {}, 3),
(
"00023_PIX2PIXHD_BREAST_DCEMRI",
{
"input_path": "input/",
"gpu_id": 0,
"image_size": 448,
},
3,
),
]


Expand Down

0 comments on commit c4f53a4

Please sign in to comment.