AlexeyGHT commited on
Commit
4714609
·
verified ·
1 Parent(s): ea67d09

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -0
README.md ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ args = Namespace(
2
+ image_path="/content/images/CFP",
3
+ output_path="/content/output",
4
+ prior_model="kandinsky-community/kandinsky-2-2-prior",
5
+ decoder_model="kandinsky-community/kandinsky-2-2-decoder",
6
+ gradient_accumulation_steps=1,
7
+ mixed_precision='bf16',
8
+ seed=1703,
9
+ size=256,
10
+ rank=32,
11
+ use_rslora=True,
12
+ init_lora_weights='gaussian',
13
+ max_grad_norm=1,
14
+ lr=1e-4,
15
+ lr_scheduler='constant',
16
+ lr_warmup_steps=0,
17
+ train_batch_size=32,
18
+ num_train_epochs=10,
19
+ snr_gamma=5,
20
+ resume_from_checkpoint=None,
21
+ checkpointing_steps=680
22
+ )