Update README.md

This commit is contained in:
hodanov 2023-07-09 23:28:32 +09:00 committed by GitHub
parent f81c412eb7
commit 040be49303
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,16 +45,16 @@ Images are generated and output to the `outputs/` directory.
├── Makefile ├── Makefile
├── README.md ├── README.md
├── sdcli/ # A directory with scripts to run inference. ├── sdcli/ # A directory with scripts to run inference.
│   ├── __init__.py
│   ├── outputs/ # Images are outputted this directory. │   ├── outputs/ # Images are outputted this directory.
│   ├── txt2img.py # A script to run txt2img inference. │   ├── txt2img.py # A script to run txt2img inference.
│   └── util.py │   └── util.py
└── setup_files/ # A directory with config files. └── setup_files/ # A directory with config files.
├── __main__.py # A main script to run inference.
├── Dockerfile # To build a base image. ├── Dockerfile # To build a base image.
├── config.yml # To set a model, vae and some tools. ├── config.yml # To set a model, vae and some tools.
├── requirements.txt ├── requirements.txt
├── main.py # A main script to run inference. ├── setup.py # Build an application to deploy on Modal.
└── setup.py # Build an application to deploy on Modal. └── txt2img.py # There is a class to run inference.
``` ```
Thank you. Thank you.