1.1.1
This commit is contained in:
parent
d531d3efbb
commit
2c25cff9f7
@ -140,10 +140,13 @@ class Config(BaseModel):
|
|||||||
output_dir: str = None
|
output_dir: str = None
|
||||||
# plugins
|
# plugins
|
||||||
enable_interactive_seg: bool = False
|
enable_interactive_seg: bool = False
|
||||||
|
interactive_seg_model: str = "vit_l"
|
||||||
|
interactive_seg_device: str = "cuda"
|
||||||
enable_remove_bg: bool = False
|
enable_remove_bg: bool = False
|
||||||
enable_realesrgan: bool = False
|
enable_realesrgan: bool = False
|
||||||
realesrgan_device: str = "cpu"
|
realesrgan_device: str = "cpu"
|
||||||
realesrgan_model: str = RealESRGANModelName.realesr_general_x4v3.value
|
realesrgan_model: str = RealESRGANModelName.realesr_general_x4v3.value
|
||||||
|
realesrgan_no_half: bool = False
|
||||||
enable_gfpgan: bool = False
|
enable_gfpgan: bool = False
|
||||||
gfpgan_device: str = "cpu"
|
gfpgan_device: str = "cpu"
|
||||||
enable_restoreformer: bool = False
|
enable_restoreformer: bool = False
|
||||||
|
2
setup.py
2
setup.py
@ -21,7 +21,7 @@ def load_requirements():
|
|||||||
# https://setuptools.readthedocs.io/en/latest/setuptools.html#including-data-files
|
# https://setuptools.readthedocs.io/en/latest/setuptools.html#including-data-files
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="lama-cleaner",
|
name="lama-cleaner",
|
||||||
version="1.1.0",
|
version="1.1.1",
|
||||||
author="PanicByte",
|
author="PanicByte",
|
||||||
author_email="cwq1913@gmail.com",
|
author_email="cwq1913@gmail.com",
|
||||||
description="Image inpainting tool powered by SOTA AI Model",
|
description="Image inpainting tool powered by SOTA AI Model",
|
||||||
|
Loading…
Reference in New Issue
Block a user