Spaces:
Runtime error
Runtime error
Trent
commited on
Commit
·
205f298
1
Parent(s):
58706b9
Markdown header
Browse files- app.py +6 -1
- requirements.txt +2 -1
app.py
CHANGED
@@ -11,7 +11,12 @@ menu = st.sidebar.radio("", options=["Sentence Similarity", "Asymmetric QA", "Se
|
|
11 |
|
12 |
st.markdown('''
|
13 |
|
14 |
-
Hi! This is the demo for the [flax sentence embeddings](https://huggingface.co/flax-sentence-embeddings) created for the **Flax/JAX community week 🤗**.
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
''')
|
17 |
|
|
|
11 |
|
12 |
st.markdown('''
|
13 |
|
14 |
+
Hi! This is the demo for the [flax sentence embeddings](https://huggingface.co/flax-sentence-embeddings) created for the **Flax/JAX community week 🤗**.
|
15 |
+
We trained three general-purpose flax-sentence-embeddings models: a **distilroberta base**, a **mpnet base** and a **minilm-l6**.
|
16 |
+
All were trained on all the dataset of the 1B+ train corpus with the v3 setup.
|
17 |
+
|
18 |
+
In addition, we trained 20 models focused on general-purpose, QuestionAnswering and Codesearch.
|
19 |
+
View our models here : https://huggingface.co/flax-sentence-embeddings
|
20 |
|
21 |
''')
|
22 |
|
requirements.txt
CHANGED
@@ -6,4 +6,5 @@ streamlit
|
|
6 |
numpy
|
7 |
torch
|
8 |
scikit-learn
|
9 |
-
plotly
|
|
|
|
6 |
numpy
|
7 |
torch
|
8 |
scikit-learn
|
9 |
+
plotly
|
10 |
+
matplotlib
|