Spaces:
Runtime error
Runtime error
mcmillanmajora
commited on
Update and rename conclusion.md to conclusion.py
Browse files- posts/conclusion.md +0 -15
- posts/conclusion.py +18 -0
posts/conclusion.md
DELETED
@@ -1,15 +0,0 @@
|
|
1 |
-
---
|
2 |
-
title: Key Takeaways
|
3 |
-
description: The key takeaways from this exploration
|
4 |
-
date: 2022-01-26
|
5 |
-
thumbnail: images/huggingface_logo.png
|
6 |
-
---
|
7 |
-
|
8 |
-
# Conclusion
|
9 |
-
|
10 |
-
Here are some of the main ideas we have conveyed in this exploration:
|
11 |
-
- Defining hate speech is hard and changes depending on your context and goals.
|
12 |
-
- Capturing a snapshot of what you've defined to be hate speech in a dataset is hard.
|
13 |
-
- Models learn lots of different things based on the data it sees, and that can include things you didn't intend for them to learn.
|
14 |
-
|
15 |
-
Action items?
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
posts/conclusion.py
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
title = "Key Takeaways"
|
4 |
+
description = "The key takeaways from this exploration"
|
5 |
+
date = "2022-01-26"
|
6 |
+
thumbnail = "images/huggingface_logo.png"
|
7 |
+
|
8 |
+
def run_article():
|
9 |
+
st.markdown("""
|
10 |
+
# Conclusion
|
11 |
+
|
12 |
+
Here are some of the main ideas we have conveyed in this exploration:
|
13 |
+
- Defining hate speech is hard and changes depending on your context and goals.
|
14 |
+
- Capturing a snapshot of what you've defined to be hate speech in a dataset is hard.
|
15 |
+
- Models learn lots of different things based on the data it sees, and that can include things you didn't intend for them to learn.
|
16 |
+
|
17 |
+
Action items?
|
18 |
+
""")
|