├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── feature-request.yaml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── python-lint.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── README_ja.md ├── README_zh.md ├── inference ├── cli_demo_cogview3.py ├── cli_demo_cogview4.py ├── cli_demo_cogview4_int8.py ├── gradio_web_demo.py ├── img │ ├── img_1.png │ ├── img_2.png │ └── img_3.png ├── prompt_optimize.py └── requirements.txt ├── pyproject.toml └── resources ├── CogView3_evaluation.png ├── CogView3_pipeline.jpg ├── CogView3_showcase.png ├── WECHAT.md ├── controlnet.png ├── img.png ├── logo.svg ├── showcase.png ├── train_control_model.md ├── train_control_model_zh.md └── wechat.jpg /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/.github/ISSUE_TEMPLATE/feature-request.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/python-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/.github/workflows/python-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/README.md -------------------------------------------------------------------------------- /README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/README_ja.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/README_zh.md -------------------------------------------------------------------------------- /inference/cli_demo_cogview3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/inference/cli_demo_cogview3.py -------------------------------------------------------------------------------- /inference/cli_demo_cogview4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/inference/cli_demo_cogview4.py -------------------------------------------------------------------------------- /inference/cli_demo_cogview4_int8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/inference/cli_demo_cogview4_int8.py -------------------------------------------------------------------------------- /inference/gradio_web_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/inference/gradio_web_demo.py -------------------------------------------------------------------------------- /inference/img/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/inference/img/img_1.png -------------------------------------------------------------------------------- /inference/img/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/inference/img/img_2.png -------------------------------------------------------------------------------- /inference/img/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/inference/img/img_3.png -------------------------------------------------------------------------------- /inference/prompt_optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/inference/prompt_optimize.py -------------------------------------------------------------------------------- /inference/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/inference/requirements.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/pyproject.toml -------------------------------------------------------------------------------- /resources/CogView3_evaluation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/resources/CogView3_evaluation.png -------------------------------------------------------------------------------- /resources/CogView3_pipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/resources/CogView3_pipeline.jpg -------------------------------------------------------------------------------- /resources/CogView3_showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/resources/CogView3_showcase.png -------------------------------------------------------------------------------- /resources/WECHAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/resources/WECHAT.md -------------------------------------------------------------------------------- /resources/controlnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/resources/controlnet.png -------------------------------------------------------------------------------- /resources/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/resources/img.png -------------------------------------------------------------------------------- /resources/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/resources/logo.svg -------------------------------------------------------------------------------- /resources/showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/resources/showcase.png -------------------------------------------------------------------------------- /resources/train_control_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/resources/train_control_model.md -------------------------------------------------------------------------------- /resources/train_control_model_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/resources/train_control_model_zh.md -------------------------------------------------------------------------------- /resources/wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zai-org/CogView4/HEAD/resources/wechat.jpg --------------------------------------------------------------------------------