hysts HF staff commited on
Commit
49374b2
1 Parent(s): 591b7a6

Add links to related Spaces

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -128,9 +128,13 @@ with gr.Blocks(css='style.css') as demo:
128
  '''The base model is not allowed to be changed in this Space so as not to slow down the demo, but it can be changed if you duplicate the Space. <a href="https://huggingface.co/spaces/{SPACE_ID}?duplicate=true"><img style="display: inline; margin-top: 0em; margin-bottom: 0em" src="https://bit.ly/3gLdBN6" alt="Duplicate Space" /></a>'''
129
  )
130
 
131
- gr.Markdown(
132
- '[Space using Anything-v4.0 as base model](https://huggingface.co/spaces/hysts/ControlNet-with-other-models)'
133
- )
 
 
 
 
134
 
135
  check_base_model_button.click(fn=lambda: model.base_model_id,
136
  outputs=current_base_model,
 
128
  '''The base model is not allowed to be changed in this Space so as not to slow down the demo, but it can be changed if you duplicate the Space. <a href="https://huggingface.co/spaces/{SPACE_ID}?duplicate=true"><img style="display: inline; margin-top: 0em; margin-bottom: 0em" src="https://bit.ly/3gLdBN6" alt="Duplicate Space" /></a>'''
129
  )
130
 
131
+ gr.Markdown('''### Related Spaces
132
+
133
+ - [Space using Anything-v4.0 as base model](https://huggingface.co/spaces/hysts/ControlNet-with-other-models)
134
+ - https://huggingface.co/spaces/jonigata/PoseMaker2
135
+ - https://huggingface.co/spaces/diffusers/controlnet-openpose
136
+ - https://huggingface.co/spaces/diffusers/controlnet-canny
137
+ ''')
138
 
139
  check_base_model_button.click(fn=lambda: model.base_model_id,
140
  outputs=current_base_model,