aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorKyuSeok Jung <wjdrbtjr495@gmail.com>2022-11-11 10:56:53 +0900
committerGitHub <noreply@github.com>2022-11-11 10:56:53 +0900
commita1e271207dfc3e89b1286ba41d96b459f210c4b2 (patch)
tree419c9855fecc6eeb14fa8865eb75297f1068cde4 /modules
parentb19af67d29356f97fea5cccfdfa12583f605243f (diff)
Update dataset.py
Diffstat (limited to 'modules')
-rw-r--r--modules/textual_inversion/dataset.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textual_inversion/dataset.py b/modules/textual_inversion/dataset.py
index e2cb8428..eb75c376 100644
--- a/modules/textual_inversion/dataset.py
+++ b/modules/textual_inversion/dataset.py
@@ -100,7 +100,7 @@ class PersonalizedBase(Dataset):
text = text.replace("[name]", self.placeholder_token)
tags = filename_text.split(',')
if shared.opts.tag_drop_out != 0:
- tags = [t for t in tags if random.random() > shared.opt.tag_drop_out]
+ tags = [t for t in tags if random.random() > shared.opts.tag_drop_out]
if shared.opts.shuffle_tags:
random.shuffle(tags)
text = text.replace("[filewords]", ','.join(tags))