Trent commited on
Commit
2e4bcb5
·
1 Parent(s): 411a9f4
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -15,9 +15,11 @@ menu = st.sidebar.radio("", options=["Contributions & Evaluation", "Sentence Sim
15
 
16
  st.markdown('''
17
 
18
- Sentence Transformers is a set of Frameworks & Models that are trained to generate Sentence Embeddings. Generated
19
- Sentence Embeddings can be used for Sentence Simliarity / Asymmetric QA / Semantic Search / Clustering among other tasks.
20
- We trained multiple general-purpose flax-sentence-embeddings models starting from different BERT models including
 
 
21
  distilroberta, mpnet and MiniLM-l6. They were trained using Siamese network configuration with custom **Contrastive Loss**
22
  inspired by OpenAI CLIP. The models were trained on a dataset comprising of [1 Billion+ training corpus](https://huggingface.co/flax-sentence-embeddings/all_datasets_v4_MiniLM-L6#training-data) with the v3 setup.
23
 
 
15
 
16
  st.markdown('''
17
 
18
+ **Sentence Transformers** is a set of frameworks & models that are trained to generate Embeddings from input sentences.
19
+ Generated Sentence Embeddings can be used for Sentence Simliarity / Asymmetric QA / Semantic Search / Clustering
20
+ among other tasks.
21
+
22
+ We trained multiple general-purpose Sentence Transformers models based on different LMs including
23
  distilroberta, mpnet and MiniLM-l6. They were trained using Siamese network configuration with custom **Contrastive Loss**
24
  inspired by OpenAI CLIP. The models were trained on a dataset comprising of [1 Billion+ training corpus](https://huggingface.co/flax-sentence-embeddings/all_datasets_v4_MiniLM-L6#training-data) with the v3 setup.
25