bpHigh commited on
Commit
2584a60
·
1 Parent(s): fb9c839

Add credits to the space

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py CHANGED
@@ -162,6 +162,16 @@ with demo:
162
  #### Top K related movies.
163
  """)
164
  df1 = gr.DataFrame(headers=["title"], datatype=["str"], interactive=False)
 
 
 
 
 
 
 
 
 
 
165
 
166
  btn.click(fn=find_related_movies, inputs=[inp1,inp2], outputs=df1)
167
 
 
162
  #### Top K related movies.
163
  """)
164
  df1 = gr.DataFrame(headers=["title"], datatype=["str"], interactive=False)
165
+
166
+ with gr.Row():
167
+ gr.Markdown(
168
+ """
169
+ <h4>Credits</h4>
170
+ Author: <a href="https://www.linkedin.com/in/khalid-salama-24403144/"> Khalid Salama</a>.<br>
171
+ Based on the following Keras example <a href="https://keras.io/examples/graph/node2vec_movielens/"> Graph representation learning with node2vec</a> by Khalid Salama<br>
172
+ Check out the model <a href="https://huggingface.co/keras-io/Node2Vec_MovieLens">here</a>
173
+ """
174
+ )
175
 
176
  btn.click(fn=find_related_movies, inputs=[inp1,inp2], outputs=df1)
177