Skip to content

v20.7.1

Compare
Choose a tag to compare
@bmaltais bmaltais released this 10 Feb 00:19
· 2768 commits to master since this release
9660d83

2023/02/09 (v20.7.1)
- Caption dropout is supported in train_db.py, fine_tune.py and train_network.py. Thanks to forestsource!
- --caption_dropout_rate option specifies the dropout rate for captions (01.0, 0.1 means 10% chance for dropout). If dropout occurs, the image is trained with the empty caption. Default is 0 (no dropout).
- --caption_dropout_every_n_epochs option specifies how many epochs to drop captions. If 3 is specified, in epoch 3, 6, 9 ..., images are trained with all captions empty. Default is None (no dropout).
- --caption_tag_dropout_rate option specified the dropout rate for tags (comma separated tokens) (0
1.0, 0.1 means 10% chance for dropout). If dropout occurs, the tag is removed from the caption. If --keep_tokens option is set, these tokens (tags) are not dropped. Default is 0 (no droupout).
- The bulk image downsampling script is added. Documentation is here (in Jpanaese). Thanks to bmaltais!
- Typo check is added. Thanks to shirayu!
- Add option to autolaunch the GUI in a browser and set the server_port. USe either gui.ps1 --inbrowser --server_port 3456or gui.cmd -inbrowser -server_port 3456