codermert commited on
Commit
e2d3849
·
verified ·
1 Parent(s): 5789154

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -11
README.md CHANGED
@@ -28,21 +28,46 @@ You should use `mert` to trigger the image generation.
28
 
29
  ```py
30
  import torch
31
- from diffusers import FluxPipeline
32
 
33
- pipe = FluxPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", torch_dtype=torch.bfloat16)
34
- pipe.load_lora_weights('codermert/mert2_flux', weight_name='flux_train_replicate.safetensors')
35
- pipe.fuse_lora(lora_scale=0.9)
36
- pipe.to("cuda")
 
37
 
 
 
 
 
 
 
 
 
 
 
 
38
  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."
39
 
40
- image = pipe(prompt,
41
- num_inference_steps=24,
42
- guidance_scale=3.5,
43
- width=768, height=1024,
44
- ).images[0]
45
- image.save(f"example.png")
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  ```
47
 
48
  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)
 
28
 
29
  ```py
30
  import torch
31
+ from diffusers import StableDiffusionXLPipeline, StableDiffusionXLImg2ImgPipeline
32
 
33
+ # Ana model yükleme
34
+ pipeline = StableDiffusionXLPipeline.from_single_file(
35
+ "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/blob/main/sd_xl_base_1.0.safetensors",
36
+ torch_dtype=torch.float16
37
+ ).to("cuda")
38
 
39
+ # Refiner model yükleme
40
+ refiner = StableDiffusionXLImg2ImgPipeline.from_single_file(
41
+ "https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0/blob/main/sd_xl_refiner_1.0.safetensors",
42
+ torch_dtype=torch.float16
43
+ ).to("cuda")
44
+
45
+ # LoRA ağırlıklarını yükleme ve birleştirme
46
+ pipeline.load_lora_weights('codermert/mert2_flux', weight_name='flux_train_replicate.safetensors')
47
+ pipeline.fuse_lora(lora_scale=0.9)
48
+
49
+ # Prompt tanımlama
50
  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."
51
 
52
+ # İlk aşama görüntü oluşturma
53
+ image = pipeline(
54
+ prompt=prompt,
55
+ num_inference_steps=24,
56
+ guidance_scale=3.5,
57
+ width=768,
58
+ height=1024,
59
+ ).images[0]
60
+
61
+ # Refiner ile görüntüyü iyileştirme
62
+ refined_image = refiner(
63
+ prompt=prompt,
64
+ image=image,
65
+ num_inference_steps=30,
66
+ guidance_scale=3.5,
67
+ ).images[0]
68
+
69
+ # Son görüntüyü kaydetme
70
+ refined_image.save("example_refined.png")
71
  ```
72
 
73
  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)