Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
leonelhs
/
rembg
like
9
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
rembg
/
utils.py
leonelhs
init app
4877588
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
157 Bytes
def
keys
(
dictionary:
dict
):
return
[k
for
k, v
in
dictionary.items()]
def
split_numbers
(
numbers:
str
):
return
[
int
(i)
for
i
in
numbers.split(
","
)]