Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
taigw committed Feb 23, 2023
1 parent cdf6f86 commit 4ce6872
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion classification/AntBee/config/train_test_ce2.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,5 @@ gpus = [0]
# checkpoint mode can be [0-latest, 1-best, 2-specified]
ckpt_mode = 1
output_dir = result
output_csv = restnet18_ce2.csv
output_csv = resnet18_ce2.csv
save_probability = True
2 changes: 1 addition & 1 deletion segmentation/JSRT/config/evaluation.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ label_list = [255]
organ_name = lung

ground_truth_folder_root = ../../PyMIC_data/JSRT
segmentation_folder_root = result
segmentation_folder_root = result/unet
evaluation_image_pair = ./config/jsrt_test_gt_seg.csv


Expand Down
2 changes: 1 addition & 1 deletion segmentation/JSRT2/net_run_jsrt.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def main():
config = synchronize_config(config)
log_dir = config['training']['ckpt_save_dir']
if(not os.path.exists(log_dir)):
os.mkdir(log_dir)
os.makedirs(log_dir)
if sys.version.startswith("3.9"):
logging.basicConfig(filename=log_dir+"/log_{0:}.txt".format(stage), level=logging.INFO,
format='%(message)s', force=True) # for python 3.9
Expand Down

1 comment on commit 4ce6872

@kostnine9
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi. Can you please send me JSRT dataset which consists of 247 images, because i can't download it by a link in website. May be you can send me it by email: [email protected]
Thank you so much. I need it for educational purposes.

Please sign in to comment.