linhqyy commited on
Commit
a28a6d6
·
verified ·
1 Parent(s): d436455

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - text-to-image
4
+ - flux
5
+ - lora
6
+ - diffusers
7
+ - template:sd-lora
8
+ - ai-toolkit
9
+ widget:
10
+ - text: 'This is a digital drawing with a warm, cozy, and slightly vintage aesthetic.
11
+ The scene depicts a cozy living room setting with a light beige wall adorned
12
+ with framed art and a small, black-and-white abstract print. In the foreground,
13
+ a fluffy, cream-colored cat with a slightly darker face and ears sits attentively
14
+ on a wooden shelf. To the left, a potted plant with small, colorful flowers
15
+ and a lit candle in a brown vase provide a soft, inviting ambiance. The shelf
16
+ holds a variety of items: a stack of colorful books, a vintage camera, and
17
+ a green record player with a yellow record on it. The record player has a
18
+ black needle and a small speaker. To the right of the cat, a green, retro-style
19
+ radio is visible. The background features a small, round rug with a textured
20
+ pattern, adding to the homely feel. The overall style is charming and nostalgic,
21
+ with a focus on warm, earthy tones and a sense of comfort.'
22
+ output:
23
+ url: samples/1729663703618__000002000_0.jpg
24
+ - text: This is a digital drawing in a warm, pastel color palette, featuring a close-up
25
+ view of a vintage-style coffee machine. The coffee machine is cream-colored
26
+ with a golden trim and has a classic, retro design. It includes a large, circular
27
+ dial on the right side, which is blue with a red pointer, indicating settings
28
+ or temperature control. The coffee machine's steam wand is positioned in the
29
+ center, with a dark green handle and a white steam nozzle. The steam wand
30
+ is currently in use, evidenced by a small amount of coffee being extracted
31
+ into a white ceramic cup placed directly below. The coffee machine's drip
32
+ tray is visible beneath the cup, with a rectangular opening for the coffee
33
+ to collect. The background is soft and muted, with warm tones that blend into
34
+ the image, giving it a cozy and inviting atmosphere. The overall style of
35
+ the drawing is reminiscent of mid-century modern design, with smooth, clean
36
+ lines and a focus on warm, comforting colors.
37
+ output:
38
+ url: samples/1729663728204__000002000_1.jpg
39
+ base_model: black-forest-labs/FLUX.1-dev
40
+
41
+ license: other
42
+ license_name: flux-1-dev-non-commercial-license
43
+ license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
44
+ ---
45
+
46
+ # jazzy
47
+ Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit)
48
+ <Gallery />
49
+
50
+ ## Trigger words
51
+
52
+ No trigger words defined.
53
+
54
+ ## Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc.
55
+
56
+ Weights for this model are available in Safetensors format.
57
+
58
+ [Download](/None/tree/main) them in the Files & versions tab.
59
+
60
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
61
+
62
+ ```py
63
+ from diffusers import AutoPipelineForText2Image
64
+ import torch
65
+
66
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
67
+ pipeline.load_lora_weights('None', weight_name='jazzy.safetensors')
68
+ image = pipeline('This is a digital drawing with a warm, cozy, and slightly vintage aesthetic. The scene depicts a cozy living room setting with a light beige wall adorned with framed art and a small, black-and-white abstract print. In the foreground, a fluffy, cream-colored cat with a slightly darker face and ears sits attentively on a wooden shelf. To the left, a potted plant with small, colorful flowers and a lit candle in a brown vase provide a soft, inviting ambiance. The shelf holds a variety of items: a stack of colorful books, a vintage camera, and a green record player with a yellow record on it. The record player has a black needle and a small speaker. To the right of the cat, a green, retro-style radio is visible. The background features a small, round rug with a textured pattern, adding to the homely feel. The overall style is charming and nostalgic, with a focus on warm, earthy tones and a sense of comfort.').images[0]
69
+ image.save("my_image.png")
70
+ ```
71
+
72
+ For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)
73
+
config.yaml ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ job: extension
2
+ config:
3
+ name: jazzy
4
+ process:
5
+ - type: sd_trainer
6
+ training_folder: output
7
+ device: cuda:0
8
+ network:
9
+ type: lora
10
+ linear: 32
11
+ linear_alpha: 32
12
+ save:
13
+ dtype: float16
14
+ save_every: 1000
15
+ max_step_saves_to_keep: 5
16
+ push_to_hub: true
17
+ hf_repo_id: jazzy
18
+ hf_private: false
19
+ datasets:
20
+ - folder_path: /workspace/Jazzy
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.0004
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: false
47
+ sample:
48
+ sampler: flowmatch
49
+ sample_every: 500
50
+ width: 1080
51
+ height: 1920
52
+ prompts:
53
+ - 'This is a digital drawing with a warm, cozy, and slightly vintage aesthetic.
54
+ The scene depicts a cozy living room setting with a light beige wall adorned
55
+ with framed art and a small, black-and-white abstract print. In the foreground,
56
+ a fluffy, cream-colored cat with a slightly darker face and ears sits attentively
57
+ on a wooden shelf. To the left, a potted plant with small, colorful flowers
58
+ and a lit candle in a brown vase provide a soft, inviting ambiance. The shelf
59
+ holds a variety of items: a stack of colorful books, a vintage camera, and
60
+ a green record player with a yellow record on it. The record player has a
61
+ black needle and a small speaker. To the right of the cat, a green, retro-style
62
+ radio is visible. The background features a small, round rug with a textured
63
+ pattern, adding to the homely feel. The overall style is charming and nostalgic,
64
+ with a focus on warm, earthy tones and a sense of comfort.'
65
+ - This is a digital drawing in a warm, pastel color palette, featuring a close-up
66
+ view of a vintage-style coffee machine. The coffee machine is cream-colored
67
+ with a golden trim and has a classic, retro design. It includes a large, circular
68
+ dial on the right side, which is blue with a red pointer, indicating settings
69
+ or temperature control. The coffee machine's steam wand is positioned in the
70
+ center, with a dark green handle and a white steam nozzle. The steam wand
71
+ is currently in use, evidenced by a small amount of coffee being extracted
72
+ into a white ceramic cup placed directly below. The coffee machine's drip
73
+ tray is visible beneath the cup, with a rectangular opening for the coffee
74
+ to collect. The background is soft and muted, with warm tones that blend into
75
+ the image, giving it a cozy and inviting atmosphere. The overall style of
76
+ the drawing is reminiscent of mid-century modern design, with smooth, clean
77
+ lines and a focus on warm, comforting colors.
78
+ neg: ''
79
+ seed: 42
80
+ walk_seed: true
81
+ guidance_scale: 4
82
+ sample_steps: 20
83
+ meta:
84
+ name: human_training
85
+ version: '1.0'
jazzy.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cdec0c9055392fc4195878d7b148b07263bdf1b1209bb28b33dd641fa427709d
3
+ size 343805384
jazzy_000001000.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ef34a644aba14976d7b58362f5fa1af66943ecb25d60a3fea3369091b5144dc
3
+ size 343805384
optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a808a9086798777e5e01e0a69ed80b90c7bac7e5d8852c02af57058105e09eb
3
+ size 350203012
samples/.ipynb_checkpoints/1729659056996__000000000_1-checkpoint.jpg ADDED
samples/.ipynb_checkpoints/1729661263524__000001000_0-checkpoint.jpg ADDED
samples/.ipynb_checkpoints/1729661288204__000001000_1-checkpoint.jpg ADDED
samples/.ipynb_checkpoints/1729663703618__000002000_0-checkpoint.jpg ADDED
samples/.ipynb_checkpoints/1729663728204__000002000_1-checkpoint.jpg ADDED
samples/1729659033605__000000000_0.jpg ADDED
samples/1729659056996__000000000_1.jpg ADDED
samples/1729660152494__000000500_0.jpg ADDED
samples/1729660177112__000000500_1.jpg ADDED
samples/1729661263524__000001000_0.jpg ADDED
samples/1729661288204__000001000_1.jpg ADDED
samples/1729662590512__000001500_0.jpg ADDED
samples/1729662615109__000001500_1.jpg ADDED
samples/1729663703618__000002000_0.jpg ADDED
samples/1729663728204__000002000_1.jpg ADDED