mirror of
https://github.com/kohya-ss/sd-scripts.git
synced 2026-04-09 06:45:09 +00:00
accept empty caption #258
This commit is contained in:
@@ -924,7 +924,9 @@ class FineTuningDataset(BaseDataset):
|
|||||||
elif tags is not None and len(tags) > 0:
|
elif tags is not None and len(tags) > 0:
|
||||||
caption = caption + ', ' + tags
|
caption = caption + ', ' + tags
|
||||||
tags_list.append(tags)
|
tags_list.append(tags)
|
||||||
assert caption is not None and len(caption) > 0, f"caption or tag is required / キャプションまたはタグは必須です:{abs_path}"
|
|
||||||
|
if caption is None:
|
||||||
|
caption = ""
|
||||||
|
|
||||||
image_info = ImageInfo(image_key, subset.num_repeats, caption, False, abs_path)
|
image_info = ImageInfo(image_key, subset.num_repeats, caption, False, abs_path)
|
||||||
image_info.image_size = img_md.get('train_resolution')
|
image_info.image_size = img_md.get('train_resolution')
|
||||||
|
|||||||
Reference in New Issue
Block a user