Skip to content

Commit

Permalink
Fix default cache dir
Browse files Browse the repository at this point in the history
  • Loading branch information
kunal-vaishnavi committed Feb 23, 2024
1 parent 9770672 commit eb8f0df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/py/models/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -1398,7 +1398,7 @@ def get_args():
"-o",
"--output",
required=True,
help="Path to folder containing ONNX model and additional files (e.g. GenAI config, external data files, etc.)",
help="Path to folder to store ONNX model and additional files (e.g. GenAI config, external data files, etc.)",
)

parser.add_argument(
Expand All @@ -1422,7 +1422,7 @@ def get_args():
"--cache_dir",
required=False,
type=str,
default=os.path.join(os.path.dirname(os.path.realpath(__file__)), 'cache_dir'),
default=os.path.join('.', 'cache_dir'),
help="Model cache directory (if providing model name and not folder path)",
)

Expand Down

0 comments on commit eb8f0df

Please sign in to comment.