Spaces:
Runtime error
Runtime error
mcmillanmajora
commited on
Update and rename model_exploration.md to model_exploration.py
Browse files- posts/model_exploration.md +0 -18
- posts/model_exploration.py +22 -0
posts/model_exploration.md
DELETED
@@ -1,18 +0,0 @@
|
|
1 |
-
---
|
2 |
-
title: Model Exploration
|
3 |
-
description: Comparison of hate speech detection models
|
4 |
-
date: 2022-01-26
|
5 |
-
thumbnail: images/huggingface_logo.png
|
6 |
-
---
|
7 |
-
|
8 |
-
# Making a Hate Speech Detection Model
|
9 |
-
|
10 |
-
This is where design choices will go.
|
11 |
-
|
12 |
-
# Model Output Ranking Tool
|
13 |
-
|
14 |
-
For now, here's a link to the [space](https://huggingface.co/spaces/aymm/ModelOutputRankingTool).
|
15 |
-
|
16 |
-
# Model Comparison Tool
|
17 |
-
|
18 |
-
For now, here's a link to the [space](https://huggingface.co/spaces/aymm/ModelComparisonTool).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
posts/model_exploration.py
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
title = "Model Exploration"
|
4 |
+
description = "Comparison of hate speech detection models"
|
5 |
+
date = "2022-01-26"
|
6 |
+
thumbnail = "images/huggingface_logo.png"
|
7 |
+
|
8 |
+
def run_article():
|
9 |
+
st.markdown("""
|
10 |
+
# Making a Hate Speech Detection Model
|
11 |
+
|
12 |
+
This is where design choices will go.
|
13 |
+
|
14 |
+
# Model Output Ranking Tool
|
15 |
+
|
16 |
+
For now, here's a link to the [space](https://huggingface.co/spaces/aymm/ModelOutputRankingTool).
|
17 |
+
|
18 |
+
# Model Comparison Tool
|
19 |
+
|
20 |
+
For now, here's a link to the [space](https://huggingface.co/spaces/aymm/ModelComparisonTool).
|
21 |
+
""")
|
22 |
+
|