From 35b1f84129825474b4d9aef3f16a413a649139d5 Mon Sep 17 00:00:00 2001 From: Devlin Date: Wed, 29 Jan 2025 11:36:40 -0800 Subject: [PATCH] rename `download_model` to `download_models` --- README.md | 2 +- src/create_lilypad_module/templates/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f7a0b43..3ede16b 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ project_name ├── config │ └── constants.py ├── scripts -│ ├── download_model.py +│ ├── download_models.py │ └── run_module.py ├── src │ └── run_inference.py diff --git a/src/create_lilypad_module/templates/README.md b/src/create_lilypad_module/templates/README.md index ea3835d..2835db4 100644 --- a/src/create_lilypad_module/templates/README.md +++ b/src/create_lilypad_module/templates/README.md @@ -49,7 +49,7 @@ The wallet must have enough LP to fund the job. In the project directory, you can run: -### [`python -m scripts.download_model`](./scripts/download_model.py) +### [`python -m scripts.download_models`](./scripts/download_models.py) A basic outline for downloading a model is provided, but the structure of the script and the methods for downloading and saving the model can differ between models and libraries. It’s important to tailor the process to the specific requirements of the model you're working with.