Skip to content

Commit 4ce6872

Browse files
committed
fix typo
fix typo
1 parent cdf6f86 commit 4ce6872

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

classification/AntBee/config/train_test_ce2.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,5 @@ gpus = [0]
7878
# checkpoint mode can be [0-latest, 1-best, 2-specified]
7979
ckpt_mode = 1
8080
output_dir = result
81-
output_csv = restnet18_ce2.csv
81+
output_csv = resnet18_ce2.csv
8282
save_probability = True

segmentation/JSRT/config/evaluation.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ label_list = [255]
44
organ_name = lung
55

66
ground_truth_folder_root = ../../PyMIC_data/JSRT
7-
segmentation_folder_root = result
7+
segmentation_folder_root = result/unet
88
evaluation_image_pair = ./config/jsrt_test_gt_seg.csv
99

1010

segmentation/JSRT2/net_run_jsrt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def main():
2323
config = synchronize_config(config)
2424
log_dir = config['training']['ckpt_save_dir']
2525
if(not os.path.exists(log_dir)):
26-
os.mkdir(log_dir)
26+
os.makedirs(log_dir)
2727
if sys.version.startswith("3.9"):
2828
logging.basicConfig(filename=log_dir+"/log_{0:}.txt".format(stage), level=logging.INFO,
2929
format='%(message)s', force=True) # for python 3.9

0 commit comments

Comments
 (0)