| # gta-standard | |
| This repo is an attempt to create standardized DreamBooth models where we provide all the creation parameters, input images, output models, and some sample output images. | |
| See [this spreadsheet](https://docs.google.com/spreadsheets/d/1wY0M8Wpx8hYj33NHE_gd8tAKzlV0ipdgnFSPevMoEs8/edit#gid=392232919) for details. | |
| Models are created using the exact settings in the spreadsheet. | |
| Sample outputs are generate using `--no-half` without optimizations or vae. | |
| ## Contributing | |
| **Note**: This repo is **very** big. If you plan to clone it, and you do not need every `.ckpt` file, use the following command: | |
| ``` | |
| git lfs install --skip-smudge | |
| ``` | |
| This will replace the .ckpt with 1KB pointer files. You can then manually download the checkpoints using the HF website or with | |
| ``` | |
| git lfs pull --include=<paths> --exclude=<paths> | |
| ``` | |
| which performs a pull that replaces pointers. So you can grab a single ckpt using something like | |
| ``` | |
| git lfs pull --include="models/c5cb583_001/2000_steps/c5cb583_001_gta_2000.ckpt" | |
| ``` |