Spaces:
Runtime error
Runtime error
Update and rename dataset_exploration.md to dataset_exploration.py
Browse files- posts/dataset_exploration.md +0 -14
- posts/dataset_exploration.py +17 -0
posts/dataset_exploration.md
DELETED
|
@@ -1,14 +0,0 @@
|
|
| 1 |
-
---
|
| 2 |
-
title: Dataset Exploration
|
| 3 |
-
description: Comparison of hate speech detection datasets
|
| 4 |
-
date: 2022-01-26
|
| 5 |
-
thumbnail: images/huggingface_logo.png
|
| 6 |
-
---
|
| 7 |
-
|
| 8 |
-
# Making a Hate Speech Dataset
|
| 9 |
-
|
| 10 |
-
This is where labels and design choices will go.
|
| 11 |
-
|
| 12 |
-
# Dataset Measurements Tool
|
| 13 |
-
|
| 14 |
-
For now, here's a link to the [space](https://huggingface.co/spaces/huggingface/data-measurements-tool).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
posts/dataset_exploration.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
title = "Dataset Exploration"
|
| 4 |
+
description = "Comparison of hate speech detection datasets"
|
| 5 |
+
date = "2022-01-26"
|
| 6 |
+
thumbnail = "images/huggingface_logo.png"
|
| 7 |
+
|
| 8 |
+
def run_article():
|
| 9 |
+
st.markdown("""
|
| 10 |
+
# Making a Hate Speech Dataset
|
| 11 |
+
|
| 12 |
+
This is where labels and design choices will go.
|
| 13 |
+
|
| 14 |
+
# Dataset Measurements Tool
|
| 15 |
+
|
| 16 |
+
For now, here's a link to the [space](https://huggingface.co/spaces/huggingface/data-measurements-tool).
|
| 17 |
+
""")
|