편안한 모델 다운로드
0.5.1
이 패키지는 인터넷에서 사전 훈련된 모델을 다운로드하여 Comfy 프로젝트에 사용할 수 있는 간단한 방법을 제공합니다.
패키지를 설치하려면 pip를 사용할 수 있습니다.
테스트 버전:
pip install -i https://test.pypi.org/simple/ comfy-model-download
테스트 버전의 요구 사항.txt 파일에 다음 두 줄을 추가합니다.
--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.