Spaces:
Sleeping
Sleeping
Rocco Meli
commited on
Commit
·
5f6e1be
1
Parent(s):
4fa0aec
add acknowledgements on hf space
Browse files
app.py
CHANGED
@@ -266,4 +266,11 @@ if __name__ == "__main__":
|
|
266 |
btn = gr.Button("Score!")
|
267 |
btn.click(fn=predict, inputs=[pfile, lfile, dd], outputs=df)
|
268 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
demo.launch()
|
|
|
266 |
btn = gr.Button("Score!")
|
267 |
btn.click(fn=predict, inputs=[pfile, lfile, dd], outputs=df)
|
268 |
|
269 |
+
gr.Markdown(
|
270 |
+
"## Acknowledgements\n"
|
271 |
+
+ "* Simon Dürr, for the blog post [Visualize proteins on Hugging Face Spaces]"
|
272 |
+
+ "(https://huggingface.co/blog/spaces_3dmoljs)\n"
|
273 |
+
+ "* Andrew McNutt, for converting Gnina models' weights to PyTorch"
|
274 |
+
)
|
275 |
+
|
276 |
demo.launch()
|