fffiloni commited on
Commit
5ec5501
·
1 Parent(s): ab7b9d2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -8
app.py CHANGED
@@ -25,13 +25,10 @@ if torch.cuda.is_available():
25
 
26
 
27
  def pix2pix(prompt,
28
- image,
29
- steps,
30
- image_guidance_scale,
31
- width=512,
32
- height=512,
33
- seed
34
- ):
35
  print(psutil.virtual_memory()) # print memory usage
36
 
37
  if seed == 0:
@@ -41,7 +38,7 @@ def pix2pix(prompt,
41
 
42
  #try:
43
  image = Image.open(image)
44
- ratio = min(height / image.height, width / image.width)
45
  image = image.resize((int(image.width * ratio), int(image.height * ratio)), Image.LANCZOS)
46
 
47
  result = pipe(
 
25
 
26
 
27
  def pix2pix(prompt,
28
+ image,
29
+ steps,
30
+ image_guidance_scale,,
31
+ seed):
 
 
 
32
  print(psutil.virtual_memory()) # print memory usage
33
 
34
  if seed == 0:
 
38
 
39
  #try:
40
  image = Image.open(image)
41
+ ratio = min(512 / image.height, 512 / image.width)
42
  image = image.resize((int(image.width * ratio), int(image.height * ratio)), Image.LANCZOS)
43
 
44
  result = pipe(