Skip to content

Commit

Permalink
add New-ReUnet on main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay-Huy committed Dec 13, 2024
1 parent 7bf5e55 commit 798fa88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def parse_args():
description='Pytorch implementation of MID')
parser.add_argument('--config', default='', help='Path to the config file')
parser.add_argument('--dataset', default='', help='Dataset name')
parser.add_argument('--network', choices=['ReUNet', 'ReUNet+++', 'Smaller'], help='Unet version')
parser.add_argument('--network', choices=['ReUNet', 'ReUNet+++', 'Smaller', 'New_ReUNet'], help='Unet version')
parser.add_argument('--num_layers', type=int, default=1, help='Number of layers in the network')
parser.add_argument('--filters', type=list, default=[16, 64, 128, 256], help='Depth of the network')
parser.add_argument('--skip_connection', type=str2bool, default=True, help='Skp connection')
Expand Down

0 comments on commit 798fa88

Please sign in to comment.