Reeve commited on
Commit
9a60b1b
1 Parent(s): fda90f2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -25,7 +25,7 @@ def pipeline(img):
25
  img.save('output.png')
26
  return 'output.png'
27
 
28
- examples=[['momoi_out.png',False], ['churuki_out.png', False], ['fgfgfggf.png', False], ['dsfd.png', False]]
29
- description="The male image doesn't work well. 1:1 ratio image recommended (square cropable after uploading). If the background is not monochromatic, it can be mixed with hair color. It takes an average of 5 seconds, but it can take longer if there is a lot of traffic. 남성 이미지에는 잘 작동하지 않음. 1:1비율 권장(업로드 후 정사각형 자르기 가능), 배경이 단색이 아니면 머리색과 섞일 수 있음. 트래픽이 많으면 5초 이상 걸릴 있음. Email:krkmfn@gmail.com"
30
  gr.Interface(pipeline, [gr.inputs.Image(type="pil")], gr.outputs.Image(type="file"),description=description,allow_flagging=False,examples=examples,allow_screenshot=False,enable_queue=False).launch()
31
 
 
25
  img.save('output.png')
26
  return 'output.png'
27
 
28
+ examples=[['1.png',False], ['2.png', False], ['3.png', False], ['4.png', False], ['5.png', False]]
29
+ description="이미지 업로드 연필모양 아이콘 누르면 정사각형으로 자르기 있습니다. 디테일은 떨어짐. 얼굴 각도(?) 따라 안될수도 있음. After uploading the image, you can square crop."
30
  gr.Interface(pipeline, [gr.inputs.Image(type="pil")], gr.outputs.Image(type="file"),description=description,allow_flagging=False,examples=examples,allow_screenshot=False,enable_queue=False).launch()
31