From 2f0b1a5314cc20f5041b9eac1d2aede4c5fd7668 Mon Sep 17 00:00:00 2001 From: sidjha1 Date: Fri, 29 Sep 2023 22:15:54 -0700 Subject: [PATCH] Fix metadata --- examples/pytorch/translation/run_translation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/pytorch/translation/run_translation.py b/examples/pytorch/translation/run_translation.py index cf054e365..eef861e1d 100644 --- a/examples/pytorch/translation/run_translation.py +++ b/examples/pytorch/translation/run_translation.py @@ -100,10 +100,10 @@ class ModelArguments: }, ) large: Optional[str] = field( - default=None, metadata={"help": "The name of the dataset to use (via the datasets library)."} + default=None, metadata={"help": "The path to the large model used for BiLD."} ) small: Optional[str] = field( - default=None, metadata={"help": "The name of the dataset to use (via the datasets library)."} + default=None, metadata={"help": "The path to the small model used for BiLD."} ) fallback_threshold: Optional[float] = field( default=None,