Skip to content

Commit

Permalink
updates more anchors (#596)
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesfrye authored Feb 23, 2024
1 parent a58e7c7 commit 1be4a3c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,5 +184,5 @@ def main():
# Every container downloads the model when it starts, which is a bit inefficient.
# In order to improve this, what you could do is store the model in the image that
# backs each container.
# See [`Image.run_function`](/docs/guide/custom-container#running-a-function-as-a-build-step-beta).
# See [`Image.run_function`](/docs/guide/custom-container#run-a-modal-function-during-your-build-with-run_function-beta).
#
2 changes: 1 addition & 1 deletion 06_gpu_and_ml/llm-serving/falcon_gptq.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def download_model():

# Now, we define our image. We'll use the `debian-slim` base image, and install the dependencies we need
# using [`pip_install`](/docs/reference/modal.Image#pip_install). At the end, we'll use
# [`run_function`](/docs/guide/custom-container#running-a-function-as-a-build-step-beta) to run the
# [`run_function`](/docs/guide/custom-container#run-a-modal-function-during-your-build-with-run_function-beta) to run the
# function defined above as part of the image build.

image = (
Expand Down
2 changes: 1 addition & 1 deletion 06_gpu_and_ml/llm-serving/openllama.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def download_models():

# Now, we define our image. We'll use the `debian-slim` base image, and install the dependencies we need
# using [`pip_install`](/docs/reference/modal.Image#pip_install). At the end, we'll use
# [`run_function`](/docs/guide/custom-container#running-a-function-as-a-build-step-beta) to run the
# [`run_function`](/docs/guide/custom-container#run-a-modal-function-during-your-build-with-run_function-beta) to run the
# function defined above as part of the image build.

image = (
Expand Down

0 comments on commit 1be4a3c

Please sign in to comment.