Skip to content
This repository was archived by the owner on Aug 11, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ terminaltables = "*"
click-didyoumean = "*"
click-help-colors = "*"
colorama = "*"

click-completion = "*"

[dev-packages]
twine = "*"
Expand Down
168 changes: 130 additions & 38 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions paperspace/cli/deployments.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def deployments():
DEPLOYMENT_TYPES_MAP = collections.OrderedDict(
(
("TFSERVING", "Tensorflow Serving on K8s"),
("GRADIENT", "Gradient Jobs"),
# ("GRADIENT", "Gradient Jobs"),
)
)

Expand All @@ -31,7 +31,7 @@ def deployments():
"deploymentType",
type=ChoiceType(DEPLOYMENT_TYPES_MAP, case_sensitive=False),
required=True,
help="Model deployment type",
help="Model deployment type. Only TensorFlow models can currently be deployed",
)
@click.option(
"--modelId",
Expand Down