From 040be4930358d2c49742de60bc419bc6694830f9 Mon Sep 17 00:00:00 2001 From: hodanov <1031hoda@gmail.com> Date: Sun, 9 Jul 2023 23:28:32 +0900 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 17bf97c..0b66f39 100644 --- a/README.md +++ b/README.md @@ -45,16 +45,16 @@ Images are generated and output to the `outputs/` directory. ├── Makefile ├── README.md ├── sdcli/ # A directory with scripts to run inference. -│   ├── __init__.py │   ├── outputs/ # Images are outputted this directory. │   ├── txt2img.py # A script to run txt2img inference. │   └── util.py └── setup_files/ # A directory with config files. + ├── __main__.py # A main script to run inference. ├── Dockerfile # To build a base image. ├── config.yml # To set a model, vae and some tools. ├── 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.