harubaru / waifu-diffusion

stable diffusion finetuned on weeb stuff
GNU Affero General Public License v3.0
1.94k stars 177 forks source link

Implementation of validation/resize classes #39

Closed Maw-Fox closed 1 year ago

Maw-Fox commented 1 year ago

Features

Maw-Fox commented 1 year ago
parser.add_argument('--foo', action='store_true')
parser.add_argument('--bar', action='store_false')
parser.add_argument('--baz', action='store_false')
parser.parse_args('--foo --bar'.split())
>> Namespace(foo=True, bar=False, baz=True)

docs

harubaru commented 1 year ago

Resolved some merge conflicts due to PR #40, as a side-note the args being type bool was intentional for an unrelated workflow. Going to test to see if the changes work in a bit.

Maw-Fox commented 1 year ago

Resolved some merge conflicts due to PR https://github.com/harubaru/waifu-diffusion/pull/40, as a side-note the args being type bool was intentional for an unrelated workflow. Going to test to see if the changes work in a bit.

No rush, let me know if any changes need to be done. I had done some rudimentary testing up until the argparse commit, hopefully everything passes. Perhaps it's time to look at some automated testing for PRs and local repos.