RemBG / rembg /commands /d_command.py
KenjieDec's picture
Update to latest version + sam support?
c8f8b0e verified
raw
history blame contribute delete
231 Bytes
import click
from ..bg import download_models
@click.command( # type: ignore
name="d",
help="download all models",
)
def d_command(*args, **kwargs) -> None:
"""
Download all models
"""
download_models()