Melanit commited on
Commit
4733b0e
1 Parent(s): f5e0820

Update model to newer version

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ resolution = 512
9
  dreambooth_model = keras_cv.models.StableDiffusion(
10
  img_width=resolution, img_height=resolution, jit_compile=True,
11
  )
12
- loaded_diffusion_model = from_pretrained_keras("melanit/dreambooth_voyager_v2")
13
  dreambooth_model._diffusion_model = loaded_diffusion_model
14
 
15
  def generate_images(prompt: str, negative_prompt:str, batch_size: int, num_steps: int, guidance_scale: float):
 
9
  dreambooth_model = keras_cv.models.StableDiffusion(
10
  img_width=resolution, img_height=resolution, jit_compile=True,
11
  )
12
+ loaded_diffusion_model = from_pretrained_keras("melanit/dreambooth_voyager_v3")
13
  dreambooth_model._diffusion_model = loaded_diffusion_model
14
 
15
  def generate_images(prompt: str, negative_prompt:str, batch_size: int, num_steps: int, guidance_scale: float):