Skip to content
Open

test #85

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -205,4 +205,5 @@ models/
configs/
.pdm-python
.magemaker_configs
.env.save
.env.save
.qodo
13 changes: 13 additions & 0 deletions magemaker/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,13 @@ def runner():
help="Show magemaker version and exit"
)

parser.add_argument(
'--query',
action='query',
help="path to YAML query configuration file",
type=str
)

parser.add_argument(
"--hf",
help="Deploy a Hugging Face Model.",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

api_key is being hardcoded and exposed in the argument configuration.

Expand All @@ -181,6 +188,12 @@ def runner():
help="path to YAML training configuration file",
type=str
)






parser.add_argument(
"-v",
"--verbose",
Expand Down
Loading