File size: 1,660 Bytes
a3d6c18 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
"""
Source url: https://github.com/OPHoperHPO/image-background-remove-tool
Author: Nikita Selin (OPHoperHPO)[https://github.com/OPHoperHPO].
License: Apache License 2.0
"""
import pathlib
from carvekit.ml.files import checkpoints_dir
from carvekit.utils.download_models import downloader
def u2net_full_pretrained() -> pathlib.Path:
"""Returns u2net pretrained model location
Returns:
pathlib.Path to model location
"""
return downloader("u2net.pth")
def basnet_pretrained() -> pathlib.Path:
"""Returns basnet pretrained model location
Returns:
pathlib.Path to model location
"""
return downloader("basnet.pth")
def deeplab_pretrained() -> pathlib.Path:
"""Returns basnet pretrained model location
Returns:
pathlib.Path to model location
"""
return downloader("deeplab.pth")
def fba_pretrained() -> pathlib.Path:
"""Returns basnet pretrained model location
Returns:
pathlib.Path to model location
"""
return downloader("fba_matting.pth")
def tracer_b7_pretrained() -> pathlib.Path:
"""Returns TRACER with EfficientNet v1 b7 encoder pretrained model location
Returns:
pathlib.Path to model location
"""
return downloader("tracer_b7.pth")
def tracer_hair_pretrained() -> pathlib.Path:
"""Returns TRACER with EfficientNet v1 b7 encoder model for hair segmentation location
Returns:
pathlib.Path to model location
"""
return downloader("tracer_hair.pth")
def download_all():
u2net_full_pretrained()
fba_pretrained()
deeplab_pretrained()
basnet_pretrained()
tracer_b7_pretrained()
|