Update app.py
Browse files
app.py
CHANGED
@@ -4,11 +4,11 @@ import os
|
|
4 |
|
5 |
HF_TOKEN = os.environ.get("HF_TOKEN", None)
|
6 |
|
7 |
-
st.set_page_config(page_title="
|
8 |
-
st.title("
|
9 |
|
10 |
st.markdown("""
|
11 |
-
We clustered 100k
|
12 |
|
13 |
Our approach involved prompting Mixtral to evaluate whether the topics in each cluster are educational or could be considered college material using a score from 1 to 10. \
|
14 |
Technically, we provide it with 10 random examples from the cluster in the prompt and ask it to judge their topics.
|
|
|
4 |
|
5 |
HF_TOKEN = os.environ.get("HF_TOKEN", None)
|
6 |
|
7 |
+
st.set_page_config(page_title="Web Clusters inspection", layout="wide")
|
8 |
+
st.title("Web clusters inspection")
|
9 |
|
10 |
st.markdown("""
|
11 |
+
We clustered 100k web samples using [text-clustering](https://github.com/huggingface/text-clustering).
|
12 |
|
13 |
Our approach involved prompting Mixtral to evaluate whether the topics in each cluster are educational or could be considered college material using a score from 1 to 10. \
|
14 |
Technically, we provide it with 10 random examples from the cluster in the prompt and ask it to judge their topics.
|