Upload 4 files
Browse files- config.yaml +126 -0
- log.txt +0 -0
- pid.txt +1 -0
- windy_storm.safetensors +3 -0
config.yaml
ADDED
|
@@ -0,0 +1,126 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
job: extension
|
| 2 |
+
config:
|
| 3 |
+
name: windy_storm
|
| 4 |
+
process:
|
| 5 |
+
- type: diffusion_trainer
|
| 6 |
+
training_folder: /data/app/output
|
| 7 |
+
sqlite_db_path: /data/app/aitk_db.db
|
| 8 |
+
device: cuda
|
| 9 |
+
trigger_word: windy_storm
|
| 10 |
+
performance_log_every: 10
|
| 11 |
+
network:
|
| 12 |
+
type: lora
|
| 13 |
+
linear: 32
|
| 14 |
+
linear_alpha: 32
|
| 15 |
+
conv: 16
|
| 16 |
+
conv_alpha: 16
|
| 17 |
+
lokr_full_rank: true
|
| 18 |
+
lokr_factor: -1
|
| 19 |
+
network_kwargs:
|
| 20 |
+
ignore_if_contains: []
|
| 21 |
+
save:
|
| 22 |
+
dtype: bf16
|
| 23 |
+
save_every: 250
|
| 24 |
+
max_step_saves_to_keep: 4
|
| 25 |
+
save_format: diffusers
|
| 26 |
+
push_to_hub: false
|
| 27 |
+
datasets:
|
| 28 |
+
- folder_path: /data/app/datasets/windy_storm
|
| 29 |
+
mask_path: null
|
| 30 |
+
mask_min_value: 0.1
|
| 31 |
+
default_caption: ''
|
| 32 |
+
caption_ext: txt
|
| 33 |
+
caption_dropout_rate: 0.05
|
| 34 |
+
cache_latents_to_disk: false
|
| 35 |
+
is_reg: false
|
| 36 |
+
network_weight: 1
|
| 37 |
+
resolution:
|
| 38 |
+
- 512
|
| 39 |
+
- 768
|
| 40 |
+
- 1024
|
| 41 |
+
controls: []
|
| 42 |
+
shrink_video_to_frames: true
|
| 43 |
+
num_frames: 1
|
| 44 |
+
do_i2v: true
|
| 45 |
+
flip_x: false
|
| 46 |
+
flip_y: false
|
| 47 |
+
train:
|
| 48 |
+
batch_size: 1
|
| 49 |
+
bypass_guidance_embedding: false
|
| 50 |
+
steps: 3000
|
| 51 |
+
gradient_accumulation: 1
|
| 52 |
+
train_unet: true
|
| 53 |
+
train_text_encoder: false
|
| 54 |
+
gradient_checkpointing: true
|
| 55 |
+
noise_scheduler: flowmatch
|
| 56 |
+
optimizer: adamw8bit
|
| 57 |
+
timestep_type: weighted
|
| 58 |
+
content_or_style: balanced
|
| 59 |
+
optimizer_params:
|
| 60 |
+
weight_decay: 0.0001
|
| 61 |
+
unload_text_encoder: false
|
| 62 |
+
cache_text_embeddings: false
|
| 63 |
+
lr: 0.0001
|
| 64 |
+
ema_config:
|
| 65 |
+
use_ema: false
|
| 66 |
+
ema_decay: 0.99
|
| 67 |
+
skip_first_sample: false
|
| 68 |
+
force_first_sample: false
|
| 69 |
+
disable_sampling: false
|
| 70 |
+
dtype: bf16
|
| 71 |
+
diff_output_preservation: false
|
| 72 |
+
diff_output_preservation_multiplier: 1
|
| 73 |
+
diff_output_preservation_class: person
|
| 74 |
+
switch_boundary_every: 1
|
| 75 |
+
loss_type: mse
|
| 76 |
+
do_differential_guidance: true
|
| 77 |
+
differential_guidance_scale: 3
|
| 78 |
+
model:
|
| 79 |
+
name_or_path: Tongyi-MAI/Z-Image-Turbo
|
| 80 |
+
quantize: true
|
| 81 |
+
qtype: qfloat8
|
| 82 |
+
quantize_te: true
|
| 83 |
+
qtype_te: qfloat8
|
| 84 |
+
arch: zimage:turbo
|
| 85 |
+
low_vram: false
|
| 86 |
+
model_kwargs: {}
|
| 87 |
+
layer_offloading: false
|
| 88 |
+
layer_offloading_text_encoder_percent: 1
|
| 89 |
+
layer_offloading_transformer_percent: 1
|
| 90 |
+
assistant_lora_path: ostris/zimage_turbo_training_adapter/zimage_turbo_training_adapter_v2.safetensors
|
| 91 |
+
sample:
|
| 92 |
+
sampler: flowmatch
|
| 93 |
+
sample_every: 300
|
| 94 |
+
width: 512
|
| 95 |
+
height: 512
|
| 96 |
+
samples:
|
| 97 |
+
- prompt: windy storm, woman, dark wavy hair, voluminous texture, almond-shaped
|
| 98 |
+
eyes, olive skin, subtle freckles, upbeat expression, crisp white cotton
|
| 99 |
+
shirt, tailored grey blazer, golden hour lighting, blurred urban background,
|
| 100 |
+
shallow depth of field, 8k, photorealistic.
|
| 101 |
+
- prompt: windy storm, woman, long dark wavy hair, intense gaze, wearing a black
|
| 102 |
+
leather biker jacket over a black top, studio lighting, clean white background,
|
| 103 |
+
sharp focus, high detail, masterpiece, 85mm lens.
|
| 104 |
+
- prompt: windy storm, woman, agile build, dark curly hair, wearing a glossy
|
| 105 |
+
green bikini top with matching long gloves and thigh-high boots, black combat
|
| 106 |
+
boots, standing on an urban rooftop, sunset lighting, full body shot, cinematic
|
| 107 |
+
mood.
|
| 108 |
+
- prompt: windy storm, woman, eyes closed, calm expression, dark wavy hair,
|
| 109 |
+
wearing a metallic silver sleeveless top, minimalist grey background with
|
| 110 |
+
a circular backlight, soft rim lighting, high-end editorial photography.
|
| 111 |
+
- prompt: windy storm, woman, hair in two long dark braids, freckles visible,
|
| 112 |
+
wearing a black high-neck sleeveless latex bodysuit, matching arm sleeves,
|
| 113 |
+
neutral bright background, centered portrait, symmetrical composition.
|
| 114 |
+
- prompt: windy storm, woman, profile view looking over shoulder, voluminous
|
| 115 |
+
dark wavy hair, wearing a cream-colored silk camisole, soft studio lighting
|
| 116 |
+
with a circular halo effect, elegant mood, skin texture detail, 8k.
|
| 117 |
+
neg: ''
|
| 118 |
+
seed: 42
|
| 119 |
+
walk_seed: true
|
| 120 |
+
guidance_scale: 1
|
| 121 |
+
sample_steps: 8
|
| 122 |
+
num_frames: 1
|
| 123 |
+
fps: 1
|
| 124 |
+
meta:
|
| 125 |
+
name: windy_storm
|
| 126 |
+
version: '1.0'
|
log.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
pid.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
6543
|
windy_storm.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b5f79c012b2ab8690c9f7dc0925da0d7dac4cbc680648dd6ff777c0c023b127
|
| 3 |
+
size 170128280
|