Datou1111 commited on
Commit
dd0c368
1 Parent(s): 249ac7d

Upload train_sincity.yaml

Browse files
Files changed (1) hide show
  1. train_sincity.yaml +81 -0
train_sincity.yaml ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ job: extension
3
+ config:
4
+ # this name will be the folder and filename name 训练结果的目录名和文件名
5
+ name: "sincitymov"
6
+ process:
7
+ - type: 'sd_trainer'
8
+ # root folder to save training sessions/samples/weights
9
+ training_folder: "output"
10
+ # uncomment to see performance stats in the terminal every N steps
11
+ performance_log_every: 1000
12
+ device: cuda:0
13
+ # if a trigger word is specified, it will be added to captions of training data if it does not already exist
14
+ # alternatively, in your captions you can add [trigger] and it will be replaced with the trigger word
15
+ # 触发词,不设置触发词也可以
16
+ trigger_word: "sincitymov"
17
+ network:
18
+ type: "lora"
19
+ linear: 16
20
+ linear_alpha: 16
21
+ save:
22
+ dtype: float16 # precision to save
23
+ save_every: 200 # save every this many steps 多少步保存一个模型
24
+ max_step_saves_to_keep: 40 # how many intermittent saves to keep 最多保留多少个模型,可以设置大一点,反正每个文件也就168M
25
+ datasets:
26
+ - folder_path: "C:/sincitymov" # 数据集所在目录
27
+ caption_ext: "txt"
28
+ caption_dropout_rate: 0.05 # will drop out the caption 5% of time
29
+ shuffle_tokens: false # shuffle caption order, split by commas
30
+ cache_latents_to_disk: true # leave this true unless you know what you're doing
31
+ resolution: [ 512, 768, 1024 ] # flux enjoys multiple resolutions
32
+ train:
33
+ batch_size: 1
34
+ steps: 4000 # total number of steps to train 500 - 4000 is a good range 成与不成通常在1500步以内
35
+ gradient_accumulation_steps: 1
36
+ train_unet: true
37
+ train_text_encoder: false # probably won't work with flux
38
+ content_or_style: balanced # content, style, balanced
39
+ gradient_checkpointing: true # need the on unless you have a ton of vram
40
+ noise_scheduler: "flowmatch" # for training only
41
+ optimizer: "adamw8bit"
42
+ lr: 6e-4 # 学习率,默认是1e-4,就是0.0001如果训练下来发现没学到特征就加大,很快就过拟合了就缩小
43
+ # uncomment this to skip the pre training sample
44
+ skip_first_sample: true
45
+
46
+ # ema will smooth out learning, but could slow it down. Recommended to leave on.
47
+ ema_config:
48
+ use_ema: true
49
+ ema_decay: 0.99
50
+
51
+ # will probably need this if gpu supports it for flux, other dtypes may not work correctly
52
+ dtype: bf16
53
+ model:
54
+ # huggingface model name or path
55
+ name_or_path: "black-forest-labs/FLUX.1-dev"
56
+ is_flux: true
57
+ quantize: true # run 8bit mixed precision
58
+ low_vram: true # uncomment this if the GPU is connected to your monitors. It will use less vram to quantize, but is slower. 量化处理模型的时候减少显存占用
59
+ sample:
60
+ sampler: "flowmatch" # must match train.noise_scheduler
61
+ sample_every: 200 # sample every this many steps 多少步输出一批测试图片,最好和保存模型的步数一致,否则没办法把测试图片和模型直接对应起来
62
+ width: 1024
63
+ height: 1024
64
+ prompts:
65
+ # you can add [trigger] to the prompts here and it will be replaced with the trigger word 生成测试图片的提示词
66
+ # - "[trigger] holding a sign that says 'I LOVE PROMPTS!'"\
67
+ - "a woman holding a coffee cup, in a beanie, sitting at a cafe, [trigger]"
68
+ - "[trigger], A monochromatic portrait of a woman with striking green eyes and bold red lipstick. She is positioned in a dramatic pose, holding a pistol in her right hand."
69
+ - "a bear building a log cabin in the snow covered mountains, [trigger]"
70
+ - "photo of a man, white background, medium shot, modeling clothing, studio lighting, white backdrop, [trigger]"
71
+ - "a man holding a sign that says, 'this is a sign', [trigger]"
72
+ - "a bulldog, in a post apocalyptic world, with a shotgun, in a leather jacket, in a desert, with a motorcycle"
73
+ neg: "" # not used on flux 不需要设置负面提示词
74
+ seed: 42
75
+ walk_seed: true
76
+ guidance_scale: 4
77
+ sample_steps: 20
78
+ # you can add any additional meta info here. [name] is replaced with config name at top
79
+ meta:
80
+ name: "[sincitymov]"
81
+ version: '1.0'