Merge branch 'main' of github.com:grodino/pytorch-image-models into grodino-dataset_trust_remote

grodino-dataset_trust_remote
Ross Wightman 2024-12-06 11:14:26 -08:00
commit 95d903fd87
2 changed files with 7 additions and 0 deletions

View File

@ -103,6 +103,8 @@ group.add_argument('--input-key', default=None, type=str,
help='Dataset key for input images.')
group.add_argument('--target-key', default=None, type=str,
help='Dataset key for target labels.')
group.add_argument('--dataset-trust-remote-code', action='store_true', default=False,
help='Allow huggingface dataset import to execute code downloaded from the dataset\'s repo.')
# Model parameters
group = parser.add_argument_group('Model parameters')
@ -653,6 +655,7 @@ def main():
input_key=args.input_key,
target_key=args.target_key,
num_samples=args.train_num_samples,
trust_remote_code=args.dataset_trust_remote_code,
)
if args.val_split:
@ -668,6 +671,7 @@ def main():
input_key=args.input_key,
target_key=args.target_key,
num_samples=args.val_num_samples,
trust_remote_code=args.dataset_trust_remote_code,
)
# setup mixup / cutmix

View File

@ -66,6 +66,8 @@ parser.add_argument('--input-img-mode', default=None, type=str,
help='Dataset image conversion mode for input images.')
parser.add_argument('--target-key', default=None, type=str,
help='Dataset key for target labels.')
parser.add_argument('--dataset-trust-remote-code', action='store_true', default=False,
help='Allow huggingface dataset import to execute code downloaded from the dataset\'s repo.')
parser.add_argument('--model', '-m', metavar='NAME', default='dpn92',
help='model architecture (default: dpn92)')
@ -268,6 +270,7 @@ def validate(args):
input_key=args.input_key,
input_img_mode=input_img_mode,
target_key=args.target_key,
trust_remote_code=args.dataset_trust_remote_code,
)
if args.valid_labels: