Shea commited on
Commit
1476156
1 Parent(s): da1b0ae
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -89,12 +89,12 @@ examples = [["Two women are observing something together.", "Two women are stand
89
 
90
  gr.Interface(
91
  fn=predict,
92
- title="Semantic Similarity with BERT",
93
- description = "Natural Language Inference by fine-tuning BERT model on SNLI Corpus 📰",
94
  inputs=["text", "text"],
95
  examples=examples,
96
  #outputs=gr.Textbox(label='Prediction'),
97
  outputs=gr.outputs.Label(num_top_classes=3, label='Semantic similarity'),
98
  cache_examples=True,
99
- article = "Author: <a href=\"https://huggingface.co/vumichien\">Vu Minh Chien</a>. Based on the keras example from <a href=\"https://keras.io/examples/nlp/semantic_similarity_with_bert/\">Mohamad Merchant</a>",
100
  ).launch(debug=True, enable_queue=True)
 
89
 
90
  gr.Interface(
91
  fn=predict,
92
+ title="Semantic Song Search",
93
+ description = "Search for songs based on the meaning in the song's lyrics using a variety of embeddings",
94
  inputs=["text", "text"],
95
  examples=examples,
96
  #outputs=gr.Textbox(label='Prediction'),
97
  outputs=gr.outputs.Label(num_top_classes=3, label='Semantic similarity'),
98
  cache_examples=True,
99
+ article = "Author: @sheacon",
100
  ).launch(debug=True, enable_queue=True)