yachty66 commited on
Commit
66440bd
·
verified ·
1 Parent(s): 8e9b242

Add model files

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