toilaluan commited on
Commit
68d54e2
1 Parent(s): 505bc2f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -105,7 +105,7 @@ from diffusers import DiffusionPipeline
105
 
106
 
107
 
108
- model_id = "pixart-training"
109
  prompt = "An astronaut is riding a horse through the jungles of Thailand."
110
  negative_prompt = "malformed, disgusting, overexposed, washed-out"
111
 
@@ -116,8 +116,8 @@ image = pipeline(
116
  negative_prompt='blurry, cropped, ugly',
117
  num_inference_steps=30,
118
  generator=torch.Generator(device='cuda' if torch.cuda.is_available() else 'mps' if torch.backends.mps.is_available() else 'cpu').manual_seed(1641421826),
119
- width=1152,
120
- height=768,
121
  guidance_scale=7.5,
122
  guidance_rescale=0.0,
123
  ).images[0]
 
105
 
106
 
107
 
108
+ model_id = "toilaluan/SigmaJourney"
109
  prompt = "An astronaut is riding a horse through the jungles of Thailand."
110
  negative_prompt = "malformed, disgusting, overexposed, washed-out"
111
 
 
116
  negative_prompt='blurry, cropped, ugly',
117
  num_inference_steps=30,
118
  generator=torch.Generator(device='cuda' if torch.cuda.is_available() else 'mps' if torch.backends.mps.is_available() else 'cpu').manual_seed(1641421826),
119
+ width=1024,
120
+ height=1024,
121
  guidance_scale=7.5,
122
  guidance_rescale=0.0,
123
  ).images[0]