leonelhs commited on
Commit
0a9449e
·
1 Parent(s): 952bab9

new background remover

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -7,7 +7,7 @@ from huggingface_hub import hf_hub_download
7
 
8
  clientGFPGAN = Client("leonelhs/GFPGAN")
9
  clientSuperface = Client("leonelhs/superface")
10
- clientZeroScratches = Client("leonelhs/ZeroScratches")
11
  clientDeoldify = Client("leonelhs/deoldify")
12
  clientEnhanceLight = Client("leonelhs/Zero-DCE")
13
  clientZeroBackground = Client("leonelhs/ZeroBackground")
@@ -32,7 +32,7 @@ def enhance_face(image, upsampler, face_enhancer, scale):
32
 
33
 
34
  def zero_scratches(image):
35
- return clientZeroScratches.predict(image, api_name="/predict")
36
 
37
 
38
  def colorize_photo(image):
 
7
 
8
  clientGFPGAN = Client("leonelhs/GFPGAN")
9
  clientSuperface = Client("leonelhs/superface")
10
+ clientZeroScratches = Client("leonelhs/remove-background")
11
  clientDeoldify = Client("leonelhs/deoldify")
12
  clientEnhanceLight = Client("leonelhs/Zero-DCE")
13
  clientZeroBackground = Client("leonelhs/ZeroBackground")
 
32
 
33
 
34
  def zero_scratches(image):
35
+ return clientZeroScratches.predict(image, api_name="/predict")[1]
36
 
37
 
38
  def colorize_photo(image):