├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── annotator ├── annotator_path.py ├── binary │ └── __init__.py ├── lama │ ├── __init__.py │ ├── config.yaml │ └── saicinpainting │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── utils.cpython-310.pyc │ │ ├── training │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-310.pyc │ │ ├── data │ │ │ ├── __init__.py │ │ │ └── masks.py │ │ ├── losses │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── distance_weighting.cpython-310.pyc │ │ │ │ ├── feature_matching.cpython-310.pyc │ │ │ │ └── perceptual.cpython-310.pyc │ │ │ ├── adversarial.py │ │ │ ├── constants.py │ │ │ ├── distance_weighting.py │ │ │ ├── feature_matching.py │ │ │ ├── perceptual.py │ │ │ ├── segmentation.py │ │ │ └── style_loss.py │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── base.cpython-310.pyc │ │ │ │ ├── depthwise_sep_conv.cpython-310.pyc │ │ │ │ ├── ffc.cpython-310.pyc │ │ │ │ ├── multidilated_conv.cpython-310.pyc │ │ │ │ ├── pix2pixhd.cpython-310.pyc │ │ │ │ ├── spatial_transform.cpython-310.pyc │ │ │ │ └── squeeze_excitation.cpython-310.pyc │ │ │ ├── base.py │ │ │ ├── depthwise_sep_conv.py │ │ │ ├── fake_fakes.py │ │ │ ├── ffc.py │ │ │ ├── multidilated_conv.py │ │ │ ├── multiscale.py │ │ │ ├── pix2pixhd.py │ │ │ ├── spatial_transform.py │ │ │ └── squeeze_excitation.py │ │ ├── trainers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── base.cpython-310.pyc │ │ │ │ └── default.cpython-310.pyc │ │ │ ├── base.py │ │ │ └── default.py │ │ └── visualizers │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── colors.py │ │ │ ├── directory.py │ │ │ └── noop.py │ │ └── utils.py ├── uniformer │ ├── LICENSE │ ├── __init__.py │ ├── configs │ │ └── _base_ │ │ │ ├── datasets │ │ │ ├── ade20k.py │ │ │ ├── chase_db1.py │ │ │ ├── cityscapes.py │ │ │ ├── cityscapes_769x769.py │ │ │ ├── drive.py │ │ │ ├── hrf.py │ │ │ ├── pascal_context.py │ │ │ ├── pascal_context_59.py │ │ │ ├── pascal_voc12.py │ │ │ ├── pascal_voc12_aug.py │ │ │ └── stare.py │ │ │ ├── default_runtime.py │ │ │ ├── models │ │ │ ├── ann_r50-d8.py │ │ │ ├── apcnet_r50-d8.py │ │ │ ├── ccnet_r50-d8.py │ │ │ ├── cgnet.py │ │ │ ├── danet_r50-d8.py │ │ │ ├── deeplabv3_r50-d8.py │ │ │ ├── deeplabv3_unet_s5-d16.py │ │ │ ├── deeplabv3plus_r50-d8.py │ │ │ ├── dmnet_r50-d8.py │ │ │ ├── dnl_r50-d8.py │ │ │ ├── emanet_r50-d8.py │ │ │ ├── encnet_r50-d8.py │ │ │ ├── fast_scnn.py │ │ │ ├── fcn_hr18.py │ │ │ ├── fcn_r50-d8.py │ │ │ ├── fcn_unet_s5-d16.py │ │ │ ├── fpn_r50.py │ │ │ ├── fpn_uniformer.py │ │ │ ├── gcnet_r50-d8.py │ │ │ ├── lraspp_m-v3-d8.py │ │ │ ├── nonlocal_r50-d8.py │ │ │ ├── ocrnet_hr18.py │ │ │ ├── ocrnet_r50-d8.py │ │ │ ├── pointrend_r50.py │ │ │ ├── psanet_r50-d8.py │ │ │ ├── pspnet_r50-d8.py │ │ │ ├── pspnet_unet_s5-d16.py │ │ │ ├── upernet_r50.py │ │ │ └── upernet_uniformer.py │ │ │ └── schedules │ │ │ ├── schedule_160k.py │ │ │ ├── schedule_20k.py │ │ │ ├── schedule_40k.py │ │ │ └── schedule_80k.py │ ├── inference.py │ ├── mmcv_custom │ │ ├── __init__.py │ │ └── checkpoint.py │ ├── uniformer.py │ └── upernet_global_small.py └── util.py ├── inpaint_Lama.py ├── requirements.txt └── workflows └── workflow_lama.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/__init__.py -------------------------------------------------------------------------------- /annotator/annotator_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/annotator_path.py -------------------------------------------------------------------------------- /annotator/binary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/binary/__init__.py -------------------------------------------------------------------------------- /annotator/lama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/__init__.py -------------------------------------------------------------------------------- /annotator/lama/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/config.yaml -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/data/masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/data/masks.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/losses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/losses/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/losses/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/losses/__pycache__/distance_weighting.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/losses/__pycache__/distance_weighting.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/losses/__pycache__/feature_matching.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/losses/__pycache__/feature_matching.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/losses/__pycache__/perceptual.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/losses/__pycache__/perceptual.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/losses/adversarial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/losses/adversarial.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/losses/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/losses/constants.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/losses/distance_weighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/losses/distance_weighting.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/losses/feature_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/losses/feature_matching.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/losses/perceptual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/losses/perceptual.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/losses/segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/losses/segmentation.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/losses/style_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/losses/style_loss.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/__init__.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/__pycache__/base.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/__pycache__/base.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/__pycache__/depthwise_sep_conv.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/__pycache__/depthwise_sep_conv.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/__pycache__/ffc.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/__pycache__/ffc.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/__pycache__/multidilated_conv.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/__pycache__/multidilated_conv.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/__pycache__/pix2pixhd.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/__pycache__/pix2pixhd.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/__pycache__/spatial_transform.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/__pycache__/spatial_transform.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/__pycache__/squeeze_excitation.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/__pycache__/squeeze_excitation.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/base.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/depthwise_sep_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/depthwise_sep_conv.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/fake_fakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/fake_fakes.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/ffc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/ffc.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/multidilated_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/multidilated_conv.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/multiscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/multiscale.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/pix2pixhd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/pix2pixhd.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/spatial_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/spatial_transform.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/modules/squeeze_excitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/modules/squeeze_excitation.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/trainers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/trainers/__init__.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/trainers/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/trainers/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/trainers/__pycache__/base.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/trainers/__pycache__/base.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/trainers/__pycache__/default.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/trainers/__pycache__/default.cpython-310.pyc -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/trainers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/trainers/base.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/trainers/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/trainers/default.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/visualizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/visualizers/__init__.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/visualizers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/visualizers/base.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/visualizers/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/visualizers/colors.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/visualizers/directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/visualizers/directory.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/training/visualizers/noop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/training/visualizers/noop.py -------------------------------------------------------------------------------- /annotator/lama/saicinpainting/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/lama/saicinpainting/utils.py -------------------------------------------------------------------------------- /annotator/uniformer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/LICENSE -------------------------------------------------------------------------------- /annotator/uniformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/__init__.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/datasets/ade20k.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/chase_db1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/datasets/chase_db1.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/datasets/cityscapes.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/cityscapes_769x769.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/datasets/cityscapes_769x769.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/datasets/drive.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/hrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/datasets/hrf.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/datasets/pascal_context.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/pascal_context_59.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/datasets/pascal_context_59.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/pascal_voc12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/datasets/pascal_voc12.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/pascal_voc12_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/datasets/pascal_voc12_aug.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/stare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/datasets/stare.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/ann_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/ann_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/apcnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/apcnet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/ccnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/ccnet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/cgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/cgnet.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/danet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/danet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/deeplabv3_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/deeplabv3_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/deeplabv3_unet_s5-d16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/deeplabv3_unet_s5-d16.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/deeplabv3plus_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/deeplabv3plus_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/dmnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/dmnet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/dnl_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/dnl_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/emanet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/emanet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/encnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/encnet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/fast_scnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/fast_scnn.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/fcn_hr18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/fcn_hr18.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/fcn_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/fcn_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/fcn_unet_s5-d16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/fcn_unet_s5-d16.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/fpn_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/fpn_r50.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/fpn_uniformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/fpn_uniformer.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/gcnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/gcnet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/lraspp_m-v3-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/lraspp_m-v3-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/nonlocal_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/nonlocal_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/ocrnet_hr18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/ocrnet_hr18.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/ocrnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/ocrnet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/pointrend_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/pointrend_r50.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/psanet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/psanet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/pspnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/pspnet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/pspnet_unet_s5-d16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/pspnet_unet_s5-d16.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/upernet_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/upernet_r50.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/upernet_uniformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/models/upernet_uniformer.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/schedules/schedule_160k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/schedules/schedule_160k.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/schedules/schedule_20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/schedules/schedule_20k.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/schedules/schedule_40k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/schedules/schedule_40k.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/schedules/schedule_80k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/configs/_base_/schedules/schedule_80k.py -------------------------------------------------------------------------------- /annotator/uniformer/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/inference.py -------------------------------------------------------------------------------- /annotator/uniformer/mmcv_custom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/mmcv_custom/__init__.py -------------------------------------------------------------------------------- /annotator/uniformer/mmcv_custom/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/mmcv_custom/checkpoint.py -------------------------------------------------------------------------------- /annotator/uniformer/uniformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/uniformer.py -------------------------------------------------------------------------------- /annotator/uniformer/upernet_global_small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/uniformer/upernet_global_small.py -------------------------------------------------------------------------------- /annotator/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/annotator/util.py -------------------------------------------------------------------------------- /inpaint_Lama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/inpaint_Lama.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pytorch_lightning 2 | pandas 3 | kornia 4 | -------------------------------------------------------------------------------- /workflows/workflow_lama.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlinmg/ComfyUI-LaMA-Preprocessor/HEAD/workflows/workflow_lama.json --------------------------------------------------------------------------------