g-ronimo commited on
Commit
bbf1920
·
verified ·
1 Parent(s): 90a3c98

Upload config.yaml with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.yaml +72 -0
config.yaml ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ job: extension
2
+ config:
3
+ name: my_first_flux_lora_v1
4
+ process:
5
+ - type: sd_trainer
6
+ training_folder: output
7
+ device: cuda:0
8
+ network:
9
+ type: lora
10
+ linear: 64
11
+ linear_alpha: 16
12
+ save:
13
+ dtype: float16
14
+ save_every: 500
15
+ max_step_saves_to_keep: 4
16
+ datasets:
17
+ - folder_path: /workspace/ai-toolkit/images
18
+ caption_ext: txt
19
+ caption_dropout_rate: 0.05
20
+ shuffle_tokens: false
21
+ cache_latents_to_disk: true
22
+ resolution:
23
+ - 512
24
+ - 768
25
+ - 1024
26
+ train:
27
+ batch_size: 1
28
+ steps: 3000
29
+ gradient_accumulation_steps: 1
30
+ train_unet: true
31
+ train_text_encoder: false
32
+ gradient_checkpointing: true
33
+ noise_scheduler: flowmatch
34
+ optimizer: adamw8bit
35
+ lr: 0.0001
36
+ ema_config:
37
+ use_ema: true
38
+ ema_decay: 0.99
39
+ dtype: bf16
40
+ model:
41
+ name_or_path: black-forest-labs/FLUX.1-dev
42
+ is_flux: true
43
+ quantize: true
44
+ sample:
45
+ sampler: flowmatch
46
+ sample_every: 500
47
+ width: 1024
48
+ height: 1024
49
+ prompts:
50
+ - woman with red hair, playing chess at the park, bomb going off in the background
51
+ - a woman holding a coffee cup, in a beanie, sitting at a cafe
52
+ - a horse is a DJ at a night club, fish eye lens, smoke machine, lazer lights,
53
+ holding a martini
54
+ - a man showing off his cool new t shirt at the beach, a shark is jumping out
55
+ of the water in the background
56
+ - a bear building a log cabin in the snow covered mountains
57
+ - woman playing the guitar, on stage, singing a song, laser lights, punk rocker
58
+ - hipster man with a beard, building a chair, in a wood shop
59
+ - photo of a man, white background, medium shot, modeling clothing, studio lighting,
60
+ white backdrop
61
+ - a man holding a sign that says, 'this is a sign'
62
+ - a bulldog, in a post apocalyptic world, with a shotgun, in a leather jacket,
63
+ in a desert, with a motorcycle
64
+ neg: ''
65
+ seed: 42
66
+ walk_seed: true
67
+ guidance_scale: 4
68
+ sample_steps: 20
69
+ trigger_word: eksray
70
+ meta:
71
+ name: my_first_flux_lora_v1
72
+ version: '1.0'