|
|
|
|
|
|
|
|
|
seed: 42 |
|
|
|
defaults: |
|
- constants: base |
|
- model: simple_vton_sd15 |
|
- trainer: base |
|
- eval: base |
|
- datasets: |
|
- viton_hd_train |
|
- viton_hd_test |
|
- viton_hd_test_local |
|
- dress_code_train |
|
- dress_code_test |
|
- deepfashion_train |
|
- deepfashion_test |
|
- _self_ |
|
|
|
constants: |
|
height: 1024 |
|
width: 768 |
|
batch_size: 1 |
|
|
|
train_dataset: ${datasets.viton_hd_train} |
|
|
|
|
|
eval_dataset: ${datasets.viton_hd_test} |
|
|
|
unit: |
|
_target_: leffa.vton_unit.VtonUnit |
|
_partial_: True |
|
model: ${model} |
|
|
|
strategy: |
|
_target_: leffa.utils.create_fsdp_strategy |
|
sharding_strategy: SHARD_GRAD_OP |
|
state_dict_type: SHARDED_STATE_DICT |
|
mixed_precision: |
|
param_dtype: ${constants.precision} |
|
reduce_dtype: ${constants.precision} |
|
cast_forward_inputs: True |
|
class_paths: |
|
|
|
- diffusers.models.unets.unet_2d_blocks.DownEncoderBlock2D |
|
- diffusers.models.unets.unet_2d_blocks.UNetMidBlock2D |
|
- diffusers.models.unets.unet_2d_blocks.UpDecoderBlock2D |
|
|
|
- leffa.models.diffusion_model.attentionhacked_tryon.BasicTransformerBlock |
|
- leffa.models.diffusion_model.attentionhacked_garment.BasicTransformerBlock |
|
|
|
- diffusers.models.attention.BasicTransformerBlock |
|
|
|
- transformers.CLIPTextModel |
|
- transformers.CLIPTextModelWithProjection |
|
- transformers.CLIPVisionModelWithProjection |
|
optim_fn: |
|
_target_: torch.optim.AdamW |
|
_partial_: True |
|
lr: 1.0e-5 |
|
betas: [0.9, 0.999] |
|
eps: 1.0e-8 |
|
weight_decay: 1.0e-2 |
|
amsgrad: false |
|
lr_scheduler_fn: |
|
_target_: torch.optim.lr_scheduler.ConstantLR |
|
_partial_: True |
|
factor: 1.0 |
|
swa_params: |
|
_target_: torchtnt.framework.auto_unit.SWAParams |
|
warmup_steps_or_epochs: 0 |
|
step_or_epoch_update_freq: 1 |
|
averaging_method: ema |
|
ema_decay: 0.9999 |
|
use_lit: True |
|
precision: ${constants.precision} |
|
clip_grad_norm: 1.0 |
|
|
|
umm_metadata: |
|
model_type_name: ads_genads_ldm |
|
model_series_name: ads_genads_ldm |
|
oncall: ai_genads |
|
|
|
checkpoint: |
|
checkpoint_dir: null |
|
checkpoint_path: null |
|
checkpoint_every_n_steps: ${constants.checkpoint_every_n_steps} |
|
|