Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
KenjieDec
/
RemBG
like
133
Running
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
c8f8b0e
RemBG
/
rembg
/
cli.py
KenjieDec
Update to latest version + sam support?
c8f8b0e
verified
3 months ago
raw
Copy download link
history
blame
Safe
266 Bytes
import
click
from
.
import
_version
from
.commands
import
command_functions
@click.group()
@click.version_option(
version=_version.get_versions(
)[
"version"
]
)
def
_main
() ->
None
:
pass
for
command
in
command_functions:
_main.add_command(command)
_main()