├── .github └── workflows │ └── lint.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── README_zh-CN.md └── projects_index.yaml /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/ecosystem/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/ecosystem/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/ecosystem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/ecosystem/HEAD/README.md -------------------------------------------------------------------------------- /README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/ecosystem/HEAD/README_zh-CN.md -------------------------------------------------------------------------------- /projects_index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/ecosystem/HEAD/projects_index.yaml --------------------------------------------------------------------------------