avishek-018 commited on
Commit
48be65b
1 Parent(s): 6135b2a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -90,10 +90,11 @@ examples = [["Two women are observing something together.", "Two women are stand
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
  ).launch(debug=True, enable_queue=True)
 
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 📰 - by Avishek Das",
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/avishek-018\">Avishek Das</a>.",
100
  ).launch(debug=True, enable_queue=True)