Skip to content
Open
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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ venv/touchfile: requirements.txt
. venv/bin/activate; pip install -Ur requirements.txt
touch venv/touchfile
clean:
rm -rf venv
rm -rf venv

10 changes: 10 additions & 0 deletions magemaker/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,19 @@ def runner():
help="Deploy a Hugging Face Model.",
type=str
)

parser.add_argument(
"--instance",
help="EC2 instance type to deploy to.",
type=str
)

parser.add_argument(
"--cpu",
help="specify cpu type",
type=str
)

parser.add_argument(
"--deploy",
help="path to YAML deployment configuration file",
Expand Down Expand Up @@ -161,6 +169,8 @@ def runner():
help="Show magemaker version and exit"
)



parser.add_argument(
"--hf",
help="Deploy a Hugging Face Model.",
Expand Down
Loading