taldanieli commited on
Commit
2324727
·
verified ·
1 Parent(s): 0bce6c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -1
app.py CHANGED
@@ -76,7 +76,18 @@ tab3 = gr.Interface(process_file, inputs=image2, outputs=png_file, examples=["gi
76
 
77
 
78
  demo = gr.TabbedInterface(
79
- [tab1, tab2], ["input image", "input url"], title="RMBG-2.0 for background removal <br><span style:'font-size:16px;'>" Background removal model developed by <a href='https://bria.ai' target='_blank'>BRIA.AI</a>, trained on a carefully selected dataset, and is available as an open-source model for non-commercial use.<br>For testing upload your image and wait.<br><a href='https://go.bria.ai/3ZCBTLH' target='_blank'>Commercial use license</a> | <a href='https://link-to-model-card' target='_blank'>Model card</a> | <a href='https://link-to-blog' target='_blank'>Blog</a></span>"
 
 
 
 
 
 
 
 
 
 
 
80
 
81
 
82
 
 
76
 
77
 
78
  demo = gr.TabbedInterface(
79
+ [tab1, tab2], ["input image", "input url"], title = (
80
+ "RMBG-2.0 for background removal <br>"
81
+ "<span style='font-size:16px;'>"
82
+ "Background removal model developed by "
83
+ "<a href='https://bria.ai' target='_blank'>BRIA.AI</a>, trained on a carefully selected dataset, "
84
+ "and is available as an open-source model for non-commercial use.<br>"
85
+ "For testing upload your image and wait.<br>"
86
+ "<a href='https://go.bria.ai/3ZCBTLH' target='_blank'>Commercial use license</a> | "
87
+ "<a href='https://link-to-model-card' target='_blank'>Model card</a> | "
88
+ "<a href='https://link-to-blog' target='_blank'>Blog</a>"
89
+ "</span>"
90
+ )
91
 
92
 
93