Brasd99 commited on
Commit
dd19e3f
1 Parent(s): 26b0060

Changed theme and description

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -34,11 +34,12 @@ inputs = [
34
  outputs = gr.outputs.Image(label="Result Image", type='numpy')
35
 
36
  title = "JustClothify"
37
- description = "Upload an image of a person and image of model with clothes, and the model will generate image of the person, wearing this clothing."
38
 
39
  gr.Interface(
40
  fn=image_processing,
41
  inputs=inputs,
42
  outputs=outputs,
43
- title=title,
 
44
  description=description).launch()
 
34
  outputs = gr.outputs.Image(label="Result Image", type='numpy')
35
 
36
  title = "JustClothify"
37
+ description = "Upload an image of a person and an image of a model with clothes, the system will generate an image of a person wearing these clothes."
38
 
39
  gr.Interface(
40
  fn=image_processing,
41
  inputs=inputs,
42
  outputs=outputs,
43
+ theme='soft',
44
+ title=title,
45
  description=description).launch()