summaryrefslogtreecommitdiffstats
path: root/train_dreambooth.py
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2023-01-03 13:32:37 +0100
committerVolpeon <git@volpeon.ink>2023-01-03 13:32:37 +0100
commitc55920681ccd15c183f168619d9b332cd837163c (patch)
tree9b86ba07b89a282153276577174820bcdb3f0387 /train_dreambooth.py
parentAdded vector dropout (diff)
downloadtextual-inversion-diff-c55920681ccd15c183f168619d9b332cd837163c.tar.gz
textual-inversion-diff-c55920681ccd15c183f168619d9b332cd837163c.tar.bz2
textual-inversion-diff-c55920681ccd15c183f168619d9b332cd837163c.zip
Don't use vector_dropout by default
Diffstat (limited to 'train_dreambooth.py')
-rw-r--r--train_dreambooth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/train_dreambooth.py b/train_dreambooth.py
index f26b7f5..df8b54c 100644
--- a/train_dreambooth.py
+++ b/train_dreambooth.py
@@ -110,7 +110,7 @@ def parse_args():
110 parser.add_argument( 110 parser.add_argument(
111 "--vector_dropout", 111 "--vector_dropout",
112 type=int, 112 type=int,
113 default=0.1, 113 default=0,
114 help="Vector dropout probability.", 114 help="Vector dropout probability.",
115 ) 115 )
116 parser.add_argument( 116 parser.add_argument(