parser.add_argument('--prefetch_factor','-p',type=int,default=16,help="Prefetch factor of dataloader workers.")
parser.add_argument('--prefetch_factor','-p',type=int,default=16,help="Prefetch factor of dataloader workers.")
parser.add_argument('--save_predictions',action='store_true',default=False,help='Save model predictions to exp_dir/val/dataset_name')
parser.add_argument('--save_predictions',action='store_true',default=False,help='Save model predictions to exp_dir/val/dataset_name')
parser.add_argument('--device',default='cuda',help='Device of the model')
parser.add_argument('--device',default='cuda',help='Device of the model')
parser.add_argument('--quantization_bits','-q',type=int,default=4,help="Used when model is LUT. Number of 4DLUT buckets defined as 2**bits. Value is in range [1, 8].")