mcmillanmajora commited on
Commit
efe2515
1 Parent(s): 8492b35

Update and rename context.md to context.py

Browse files
Files changed (2) hide show
  1. posts/context.md +0 -20
  2. posts/context.py +23 -0
posts/context.md DELETED
@@ -1,20 +0,0 @@
1
- ---
2
- title: Hate Speech Detection in Automatic Content Moderation
3
- description: The history and development of hate speech detection as a modeling task
4
- date: 2022-01-26
5
- thumbnail: images/huggingface_logo.png
6
- ---
7
-
8
- # What is Automatic Content Moderation?
9
-
10
- This is where the history of automatic content moderation (ACM) will go.
11
-
12
- # The Landscape of ACM
13
-
14
- This is where the current platforms and approaches with go.
15
-
16
- # Current Challenges
17
-
18
- This is where the discussion of current challenges, examples from media, and value tensions will go.
19
-
20
- So what does all this mean for conceptualizing this real world problem as a machine learning task? First we'll look at the data, then at the models.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
posts/context.py ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ title = "Hate Speech Detection in Automatic Content Moderation"
4
+ description = "The history and development of hate speech detection as a modeling task"
5
+ date = "2022-01-26"
6
+ thumbnail = "images/huggingface_logo.png"
7
+
8
+ def run_article():
9
+ st.markdown("""
10
+ # What is Automatic Content Moderation?
11
+
12
+ This is where the history of automatic content moderation (ACM) will go.
13
+
14
+ # The Landscape of ACM
15
+
16
+ This is where the current platforms and approaches with go.
17
+
18
+ # Current Challenges
19
+
20
+ This is where the discussion of current challenges, examples from media, and value tensions will go.
21
+
22
+ So what does all this mean for conceptualizing this real world problem as a machine learning task? First we'll look at the data, then at the models.
23
+ """)