Added ability to use short captions from json caption file

This commit is contained in:
Jaret Burkett
2025-04-16 08:32:28 -06:00
parent 68018c908e
commit c12036df95
2 changed files with 5 additions and 1 deletions

View File

@@ -748,6 +748,7 @@ class DatasetConfig:
self.mask_min_value: float = kwargs.get('mask_min_value', 0.0) # min value for . 0 - 1
self.poi: Union[str, None] = kwargs.get('poi',
None) # if one is set and in json data, will be used as auto crop scale point of interes
self.use_short_captions: bool = kwargs.get('use_short_captions', False) # if true, will use 'caption_short' from json
self.num_repeats: int = kwargs.get('num_repeats', 1) # number of times to repeat dataset
# cache latents will store them in memory
self.cache_latents: bool = kwargs.get('cache_latents', False)