gustproof commited on
Commit
adcc993
1 Parent(s): 484b1ed

Create release_notes/v1.0.md

Browse files
Files changed (1) hide show
  1. luca/release_notes/v1.0.md +77 -0
luca/release_notes/v1.0.md ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # v1.0
2
+
3
+ A LoRA of [Ikaruga Luca](https://shinycolors.idolmaster.jp/idol/ikarugaluca/luca.html) from THE iDOLM@STER Shiny Colors based on 65 fanarts.
4
+
5
+ ## Usage
6
+
7
+ The character tag is `ikaruga luca`.
8
+
9
+ Top related tags:
10
+
11
+ ```
12
+ 1girl, solo, black hair, blonde hair, multicolored hair, yellow eyes, looking at viewer, piercing, streaked hair, ear piercing, breasts, simple background, jewelry, choker, jacket, collarbone, off shoulder, crop top, shirt, black jacket, medium hair, necklace, white background, bare shoulders, navel, midriff, nail polish, upper body, blush, two-tone hair, holding, fishnets, off-shoulder shirt, long sleeves, medium breasts, skirt, cleavage, small breasts, black choker, dress
13
+ ```
14
+
15
+ For specific outfits, refer to the preview images or the dataset.
16
+
17
+ ## Training info
18
+
19
+ Dataset: [65 fanarts from Danbooru](https://huggingface.co/datasets/gustproof/sd-data/blob/main/luca.zip)
20
+
21
+ Training cost: ~0.5 T4-hour
22
+
23
+ Training config:
24
+ ```
25
+ [model_arguments]
26
+ v2 = false
27
+ v_parameterization = false
28
+ pretrained_model_name_or_path = "animefull-final-pruned.ckpt"
29
+
30
+ [additional_network_arguments]
31
+ no_metadata = false
32
+ unet_lr = 0.0001
33
+ text_encoder_lr = 0.0001
34
+ network_module = "networks.lora"
35
+ network_dim = 1
36
+ network_alpha = 1
37
+ network_train_unet_only = false
38
+ network_train_text_encoder_only = false
39
+
40
+ [optimizer_arguments]
41
+ min_snr_gamma = 5
42
+ optimizer_type = "AdamW8bit"
43
+ learning_rate = 0.0001
44
+ max_grad_norm = 1.0
45
+ lr_scheduler = "constant"
46
+ lr_warmup_steps = 0
47
+
48
+ [dataset_arguments]
49
+ dataset_repeats = 1
50
+ shuffle_caption = true
51
+ keep_tokens = 1
52
+ caption_dropout_rate = 0
53
+ caption_tag_dropout_rate = 0
54
+ caption_dropout_every_n_epochs = 0
55
+ color_aug = false
56
+ token_warmup_min = 1
57
+ token_warmup_step = 0
58
+
59
+ [training_arguments]
60
+ save_precision = "fp16"
61
+ save_every_n_epochs = 1
62
+ train_batch_size = 4
63
+ max_token_length = 225
64
+ mem_eff_attn = false
65
+ xformers = true
66
+ max_train_epochs = 9999
67
+ max_data_loader_n_workers = 8
68
+ persistent_data_loader_workers = true
69
+ gradient_checkpointing = false
70
+ gradient_accumulation_steps = 1
71
+ mixed_precision = "fp16"
72
+ clip_skip = 2
73
+ lowram = true
74
+
75
+ [saving_arguments]
76
+ save_model_as = "safetensors"
77
+ ```