patrickvonplaten commited on
Commit
6e958c4
1 Parent(s): ef6b7af
magical_princess_Arcane-Diffusion.png CHANGED

Git LFS Details

  • SHA256: 3ee5ad399b0241a16f8675a7c6c6fe0a870bfca049fd1059663a4076af118129
  • Pointer size: 131 Bytes
  • Size of remote file: 306 kB

Git LFS Details

  • SHA256: a7e5b154a73be0033a7369bd3f0be810acc68ae12dd74e4fc0150b9d57cbfb7f
  • Pointer size: 131 Bytes
  • Size of remote file: 298 kB
magical_princess_archer-diffusion.png CHANGED

Git LFS Details

  • SHA256: d6ae45c4d9385a6b11de29ebb0387599c041d20cf9e24df1b5f110cf0fbe05ad
  • Pointer size: 131 Bytes
  • Size of remote file: 471 kB

Git LFS Details

  • SHA256: 8653b948c903b9553450e8c2d9d9cff11ee63e88d1e54fd81a835df5d8f9def3
  • Pointer size: 131 Bytes
  • Size of remote file: 342 kB
magical_princess_elden-ring-diffusion.png CHANGED

Git LFS Details

  • SHA256: d038f86a4629ec4afe262ba8d3c4d37ab8d855bf856b35261269770e2dfd429d
  • Pointer size: 131 Bytes
  • Size of remote file: 554 kB

Git LFS Details

  • SHA256: bc5dc772bc81513948b40f7aeaafee102c1a74087adaba03c1be2caa63f3dd58
  • Pointer size: 131 Bytes
  • Size of remote file: 421 kB
magical_princess_mo-di-diffusion.png CHANGED

Git LFS Details

  • SHA256: ff72278bb133b5f0056c7347a7d201705ca7bd7e476fe99e7150c3ed59c3203e
  • Pointer size: 131 Bytes
  • Size of remote file: 379 kB

Git LFS Details

  • SHA256: 0b198426bc81a3dde9a0b9feb0392fba26c68c7da0bdf68cc561423ee01f21c9
  • Pointer size: 131 Bytes
  • Size of remote file: 344 kB
magical_princess_spider-verse-diffusion.png CHANGED

Git LFS Details

  • SHA256: 93381d58e93c3bb77bb37667e3f118ba2b08ef544150c7357709d06b9d2d8a8a
  • Pointer size: 131 Bytes
  • Size of remote file: 447 kB

Git LFS Details

  • SHA256: 1421da9e902fbd57265f980d0e05ec3e43c120565415936a364ce6a8b33ed51d
  • Pointer size: 131 Bytes
  • Size of remote file: 381 kB
run.py CHANGED
@@ -3,13 +3,14 @@ from diffusers import StableDiffusionPipeline
3
  import torch
4
 
5
  model_ids = ["nitrosocke/Arcane-Diffusion", "nitrosocke/spider-verse-diffusion", "nitrosocke/mo-di-diffusion", "nitrosocke/archer-diffusion", "nitrosocke/elden-ring-diffusion"]
 
6
 
7
 
8
- for model_id in model_ids:
9
  pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
10
  pipe = pipe.to("cuda")
11
 
12
- prompt = "arcane style, a magical princess with golden hair"
13
  image = pipe(prompt).images[0]
14
 
15
  image.save(f"./magical_princess_{model_id.split('/')[-1]}.png")
 
3
  import torch
4
 
5
  model_ids = ["nitrosocke/Arcane-Diffusion", "nitrosocke/spider-verse-diffusion", "nitrosocke/mo-di-diffusion", "nitrosocke/archer-diffusion", "nitrosocke/elden-ring-diffusion"]
6
+ prompts = ["arcane style", "spiderverse style", "modern disney style", "archer style", "elden ring style"]
7
 
8
 
9
+ for model_id, prompt in zip(model_ids, prompts):
10
  pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
11
  pipe = pipe.to("cuda")
12
 
13
+ prompt = f"a magical princess with golden hair, {prompt}"
14
  image = pipe(prompt).images[0]
15
 
16
  image.save(f"./magical_princess_{model_id.split('/')[-1]}.png")