You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument('--subsamp', type=int, default=-1,
help='Number of slices to skip when forming 3D samples for training. Enter -1 for random '
'subsampling up to 5% of total slices.')
->
parser.add_argument('--subsamp', type=int, default=-1,
help='Number of slices to skip when forming 3D samples for training. Enter -1 for random '
'subsampling up to 5%% of total slices.')
The text was updated successfully, but these errors were encountered:
change % to %%, otherwise the help function crashes
SegCaps/main.py
Line 127 in c6b3f9e
parser.add_argument('--subsamp', type=int, default=-1,
help='Number of slices to skip when forming 3D samples for training. Enter -1 for random '
'subsampling up to 5% of total slices.')
->
parser.add_argument('--subsamp', type=int, default=-1,
help='Number of slices to skip when forming 3D samples for training. Enter -1 for random '
'subsampling up to 5%% of total slices.')
The text was updated successfully, but these errors were encountered: