BiliSakura commited on
Commit
9cb89f8
·
verified ·
1 Parent(s): 120bbb2

Update all files for BitDance-14B-16x-diffusers

Browse files
Files changed (1) hide show
  1. README.md +3 -2
README.md CHANGED
@@ -24,7 +24,7 @@ import torch
24
  from diffusers import DiffusionPipeline
25
 
26
  # Local path (recommended - no trust_remote_code needed)
27
- model_path = "path/to/BitDance-14B-16x-diffusers"
28
  pipe = DiffusionPipeline.from_pretrained(
29
  model_path,
30
  custom_pipeline=model_path,
@@ -32,11 +32,12 @@ pipe = DiffusionPipeline.from_pretrained(
32
  ).to("cuda")
33
 
34
  result = pipe(
35
- prompt="A cinematic landscape photo of snowy mountains at sunrise.",
36
  height=1024,
37
  width=1024,
38
  num_inference_steps=50,
39
  guidance_scale=7.5,
 
40
  )
41
  result.images[0].save("bitdance_14b_16x.png")
42
  ```
 
24
  from diffusers import DiffusionPipeline
25
 
26
  # Local path (recommended - no trust_remote_code needed)
27
+ model_path = "BiliSakura/BitDance-14B-16x-diffusers"
28
  pipe = DiffusionPipeline.from_pretrained(
29
  model_path,
30
  custom_pipeline=model_path,
 
32
  ).to("cuda")
33
 
34
  result = pipe(
35
+ prompt="A close-up portrait in a cinematic photography style, capturing a girl-next-door look on a sunny daytime urban street. She wears a khaki sweater, with long, flowing hair gently draped over her shoulders. Her head is turned slightly, revealing soft facial features illuminated by realistic, delicate sunlight coming from the left. The sunlight subtly highlights individual strands of her hair. The image has a Canon film-like color tone, evoking a warm nostalgic atmosphere.",
36
  height=1024,
37
  width=1024,
38
  num_inference_steps=50,
39
  guidance_scale=7.5,
40
+ show_progress_bar=True,
41
  )
42
  result.images[0].save("bitdance_14b_16x.png")
43
  ```