Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update PyPiDescription.rst #2445

Merged
merged 9 commits into from
Jul 18, 2023
Merged
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
8 changes: 4 additions & 4 deletions model-archiver/PyPiDescription.rst
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
Project Description
===================

Torch Model Archiver is a tool used for creating archives of trained neural net models that can be consumed for TorchServe inference.
Torch Model Archiver is a tool used for creating archives of trained neural net models that can be consumed by TorchServe for inference.

Use the Torch Model Archiver CLI to start create a ``.mar`` file.
Use the Torch Model Archiver CLI to create a ``.mar`` file.

Torch Model Archiver is part of `TorchServe <https://pypi.org/project/torchserve/>`__.
However, you can install Torch Model Archiver stand alone.

Detailed documentation and examples are provided in the `README
<https://github.com/pytorch/serve/model-archiver/README.md>`__.
<https://github.com/pytorch/serve/blob/master/model-archiver/README.md>`__.


Installation
------------

::

pip install torch-model-archiver
python -m pip install torch-model-archiver

Source code
-----------
Expand Down
3 changes: 2 additions & 1 deletion model-archiver/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,10 @@ def get_nightly_version():
description="Torch Model Archiver is used for creating archives of trained neural net models "
"that can be consumed by TorchServe inference",
long_description=pypi_description(),
long_description_content_type="text/x-rst",
author="PyTorch Serving team",
author_email="noreply@noreply.com",
url="https://github.com/pytorch/serve/model-archiver/",
url="https://github.com/pytorch/serve/blob/master/model-archiver",
keywords="TorchServe Torch Model Archive Archiver Server Serving Deep Learning Inference AI",
packages=pkgs,
install_requires=requirements,
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ def run(self):
author="PyTorch Serving team",
author_email="noreply@noreply.com",
long_description=pypi_description(),
long_description_content_type="text/x-rst",
url="https://github.com/pytorch/serve.git",
keywords="TorchServe PyTorch Serving Deep Learning Inference AI",
packages=pkgs,
Expand Down
4 changes: 2 additions & 2 deletions workflow-archiver/PyPiDescription.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ Project Description

Torch Workflow Archiver is a tool used for creating archives of workflow designed using trained neural net models that can be consumed by TorchServe inference.

Use the Torch Workflow Archiver CLI to start create a ``.war`` file.
Use the Torch Workflow Archiver CLI to create a ``.war`` file.

Torch Workflow Archiver is part of `TorchServe <https://pypi.org/project/torchserve/>`__.
However, you can install Torch Workflow Archiver stand alone.

Detailed documentation and examples are provided in the `README
<https://github.com/pytorch/serve/workflow-archiver/README.md>`__.
<https://github.com/pytorch/serve/blob/master/workflow-archiver/README.md>`__.


Installation
Expand Down
3 changes: 2 additions & 1 deletion workflow-archiver/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,10 @@ def get_nightly_version():
description="Torch Workflow Archiver is used for creating archives of workflow designed using"
" trained neural net models that can be consumed by TorchServe inference",
long_description=pypi_description(),
long_description_content_type="text/x-rst",
author="PyTorch Serving team",
author_email="noreply@noreply.com",
url="https://github.com/pytorch/serve/workflow-archiver/",
url="https://github.com/pytorch/serve/blob/master/workflow-archiver/",
keywords="TorchServe Torch Workflow Archive Archiver Server Serving Deep Learning Inference AI",
packages=pkgs,
entry_points={
Expand Down