Skip to content

Commit c772d4d

Browse files
authored
fix a typo bug where 'id2label' was incorrectly written as 'i2label' when reading config (#34637)
fix a bug where 'id2label' was incorrectly written as 'i2label' when reading the config from pretrained config
1 parent eb0ab3e commit c772d4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/pytorch/image-classification/run_image_classification_no_trainer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ def main():
331331
config = AutoConfig.from_pretrained(
332332
args.model_name_or_path,
333333
num_labels=len(labels),
334-
i2label=id2label,
334+
id2label=id2label,
335335
label2id=label2id,
336336
finetuning_task="image-classification",
337337
trust_remote_code=args.trust_remote_code,

0 commit comments

Comments
 (0)