gitextract_xxyh1rmd/ ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ ├── close_inactive_issues.yml │ ├── lint_python.yml │ ├── publish_docker.yml │ ├── publish_pypi.yml │ └── windows_installer.yml ├── .gitignore ├── .markdownlint.yaml ├── .python-version ├── CITATION.cff ├── Dockerfile ├── Dockerfile_nvidia_cuda_cudnn_gpu ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── USAGE.md ├── _build-exe.ps1 ├── _modpath.iss ├── _setup-cpu.iss ├── _setup-gpu.iss ├── docker-compose.yml ├── man/ │ └── rembg.1 ├── pyproject.toml ├── pytest.ini ├── rembg/ │ ├── __init__.py │ ├── bg.py │ ├── cli.py │ ├── commands/ │ │ ├── __init__.py │ │ ├── b_command.py │ │ ├── d_command.py │ │ ├── i_command.py │ │ ├── p_command.py │ │ └── s_command.py │ ├── session_factory.py │ └── sessions/ │ ├── __init__.py │ ├── base.py │ ├── ben_custom.py │ ├── birefnet_cod.py │ ├── birefnet_dis.py │ ├── birefnet_general.py │ ├── birefnet_general_lite.py │ ├── birefnet_hrsod.py │ ├── birefnet_massive.py │ ├── birefnet_portrait.py │ ├── bria_rmbg.py │ ├── dis_anime.py │ ├── dis_custom.py │ ├── dis_general_use.py │ ├── sam.py │ ├── silueta.py │ ├── u2net.py │ ├── u2net_cloth_seg.py │ ├── u2net_custom.py │ ├── u2net_human_seg.py │ └── u2netp.py ├── rembg.ipynb ├── rembg.py ├── rembg.spec └── tests/ └── test_remove.py