NNNan commited on
Commit
7b286c1
·
verified ·
1 Parent(s): ec17209

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -37,8 +37,8 @@ model_id = "NNNan/UniEM-Gen"
37
  pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
38
  pipe = pipe.to("cuda")
39
 
40
- # Example prompt
41
- prompt = "High-resolution electron micrograph of nanoparticles with spherical morphology, high contrast"
42
 
43
  # Generate image
44
  image = pipe(prompt).images[0]
 
37
  pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
38
  pipe = pipe.to("cuda")
39
 
40
+ # Example prompt, sampled from UniEM-3M.
41
+ prompt = "SEM of Ceramic Powder: A mix of plate-like and rod-shaped particles. nanostructured. high density. densely packed and agglomerated. Multilayer. Wide range of particle sizes. Grayscale particles on a dark background."
42
 
43
  # Generate image
44
  image = pipe(prompt).images[0]