victorisgeek commited on
Commit
4da45b0
1 Parent(s): 826d674

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -50,18 +50,18 @@ def inference(img):
50
 
51
  outputpath = "out_" + str(index) + ".jpg"
52
  index += 1
53
- print(time.strftime("开始!!!!!!!!! %Y-%m-%d %H:%M:%S", time.localtime()))
54
  output = mainTest(inputpath, outputpath)
55
- print(time.strftime("结束!!!!!!!!! %Y-%m-%d %H:%M:%S", time.localtime()))
56
  return output
57
 
58
 
59
- title = "AI脱衣"
60
- description = "传入人物照片,类似最下方测试图的那种,将制作脱衣图,一张图可能等30秒,别传私人照片.\n有队列系统,根据先来先做的逻辑,一次只做一张,\n图片必须至少能看出是人体轮廓"
61
 
62
  examples = [
63
- ['input.png', '测试图'],
64
- ['input.jpg', '测试图'],
65
  ]
66
 
67
 
 
50
 
51
  outputpath = "out_" + str(index) + ".jpg"
52
  index += 1
53
+ print(time.strftime("START!!!!!!!!! %Y-%m-%d %H:%M:%S", time.localtime()))
54
  output = mainTest(inputpath, outputpath)
55
+ print(time.strftime("Finish!!!!!!!!! %Y-%m-%d %H:%M:%S", time.localtime()))
56
  return output
57
 
58
 
59
+ title = "Undress AI"
60
+ description = "Input photos of people, similar to the test picture at the bottom, and undress pictures will be produced. You may have to wait 30 seconds for a picture. Do not upload personal photos. There is a queue system. According to the logic of first come, first served, only one picture will be made at a time. Must be able to at least see the outline of a human body"
61
 
62
  examples = [
63
+ ['input.png', 'Test'],
64
+ ['input.jpg', 'Test'],
65
  ]
66
 
67