Skip to content

Fix broken deployment link in Flask REST API tutorial #3385

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

Merged
merged 3 commits into from
Jun 5, 2025
Merged
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
4 changes: 1 addition & 3 deletions intermediate_source/flask_rest_api_tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,9 +321,7 @@ def get_prediction(image_bytes):
# for deploying a Flask server in production.
#
# - You can also add a UI by creating a page with a form which takes the image and
# displays the prediction. Check out the `demo <https://pytorch-imagenet.herokuapp.com/>`_
# of a similar project and its `source code <https://github.com/avinassh/pytorch-flask-api-heroku>`_.
#
# displays the prediction.
# - In this tutorial, we only showed how to build a service that could return predictions for
# a single image at a time. We could modify our service to be able to return predictions for
# multiple images at once. In addition, the `service-streamer <https://github.com/ShannonAI/service-streamer>`_
Expand Down