wanghaofan commited on
Commit
ac1b155
1 Parent(s): b77e174

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +49 -5
README.md CHANGED
@@ -1,5 +1,49 @@
1
- ---
2
- license: other
3
- license_name: flux-1-dev-non-commercial-license
4
- license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
5
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - text-to-image
4
+ - stable-diffusion
5
+ - diffusers
6
+ - image-generation
7
+ - flux
8
+ - safetensors
9
+ license: other
10
+ license_name: flux-1-dev-non-commercial-license
11
+ license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
12
+ language:
13
+ - en
14
+ base_model: black-forest-labs/FLUX.1-dev
15
+ library_name: diffusers
16
+ ---
17
+
18
+ # AWPortrait-FL
19
+
20
+ AWPortrait-FL is finetuned on FLUX.1-dev using the training set of [AWPortrait-XL](https://huggingface.co/awplanet/AWPortraitXL) and nearly 2,000 fashion photography photos with extremely high aesthetic quality.
21
+ It has remarkable improvements in composition and details, with more delicate and realistic skin and textual. Trained by [DynamicWang](https://www.shakker.ai/userpage/dfca7abc67c04a9492ea738d864de070/publish) at [AWPlanet](https://huggingface.co/awplanet).
22
+
23
+
24
+ <div class="container">
25
+ <img src="./cover.jpeg" width="1024"/>
26
+ </div>
27
+
28
+ ## Inference
29
+
30
+ ```python
31
+ import torch
32
+ from diffusers import FluxPipeline
33
+
34
+ pipe = FluxPipeline.from_pretrained("Shakker-Labs/AWPortrait-FL", torch_dtype=torch.bfloat16)
35
+ pipe.to("cuda")
36
+
37
+ prompt = "close up portrait, Amidst the interplay of light and shadows in a photography studio,a soft spotlight traces the contours of a face,highlighting a figure clad in a sleek black turtleneck. The garment,hugging the skin with subtle luxury,complements the Caucasian model's understated makeup,embodying minimalist elegance. Behind,a pale gray backdrop extends,its fine texture shimmering subtly in the dim light,artfully balancing the composition and focusing attention on the subject. In a palette of black,gray,and skin tones,simplicity intertwines with profundity,as every detail whispers untold stories."
38
+
39
+ image = pipe(prompt,
40
+ num_inference_steps=24,
41
+ guidance_scale=3.5,
42
+ width=768, height=1024,
43
+ ).images[0]
44
+ image.save(f"example.png")
45
+ ```
46
+
47
+
48
+ ## Acknowledgements
49
+ This model is trained by our copyrighted users [DynamicWang](https://www.shakker.ai/userpage/dfca7abc67c04a9492ea738d864de070/publish). We release this model under permissions. The model follows [flux-1-dev-non-commercial-license](https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md) and the generated images are also non commercial.