快適なモデルのダウンロード
0.5.1
このパッケージは、事前トレーニングされたモデルをインターネットからダウンロードして Comfy プロジェクトで使用する簡単な方法を提供します。
パッケージをインストールするには、pip を使用できます。
テストバージョン:
pip install -i https://test.pypi.org/simple/ comfy-model-download
テスト バージョンの required.txt ファイルに次の 2 行を追加します。
--index-url https://test.pypi.org/simple/
comfy_model_download
ダウンロードするモデルとそれらを保存するパスを含む yaml ファイルを提供する必要がありました。パッケージは、指定されたワーカー数を使用してモデルを並行してダウンロードします。
モデルを GCS からダウンロードする必要がある場合は、キー ファイルを提供する必要があります。
from comfy_model_download import ModelDownload
download = ModelDownload (
config_file = "models_config.yaml" ,
max_workers = 2 ,
model_path = "path/to/save/models" ,
key_file = "path/to/key/file" ,
)
download . start ()
models.yaml ファイルはプロジェクトのルートにあり、次の構造になっている必要があります。
models :
checkpoints :
- name : JuggernautXL.safetensors
url : gs://example_gcs_bucket/JuggernautXL.safetensors
# force_download: true
- name : AnimateLCM_sd15_t2v_lora.safetensors
url : gs://example_gcs_bucket/AnimateLCM_sd15_t2v_lora.safetensors
ipadapter :
- name : ip-adapter-plus_sd15.safetensors
url : gs://example_gcs_bucket/ip-adapter-plus_sd15.safetensors
animatediff_models :
- name : AnimateLCM_sd15_t2v.ckpt
url : gs://example_gcs_bucket/AnimateLCM_sd15_t2v.ckpt
...
モデルがすでにダウンロードされており、ダウンロードを強制したい場合は、 force_download
キーを使用できます。
モデルは、GCS または HTTP 経由のインターネットからダウンロードできます。
MIT License
Copyright (c) 2024 Freepik Company, Ltd.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.