mcmillanmajora commited on
Commit
9faa18f
1 Parent(s): 14007e6

Update and rename welcome.md to welcome.py

Browse files
Files changed (2) hide show
  1. posts/welcome.md +0 -12
  2. posts/welcome.py +15 -0
posts/welcome.md DELETED
@@ -1,12 +0,0 @@
1
- ---
2
- title: Welcome Page
3
- description: Introduction
4
- date: 2022-01-26
5
- thumbnail: images/huggingface_logo.png
6
- ---
7
-
8
- # Welcome!
9
-
10
- Welcome to the Task Exploration Activity for hate speech detection! In this series of modules, you'll learn about the history of hate speech detection as a task in the larger pipeline of automatic content moderation (ACM). You'll also be able to interact with and compare datasets and models built for this task.
11
-
12
- The goal of this exploration is to share the design considerations and challenges faced when using algorithms to detect hate speech.
 
 
 
 
 
 
 
 
 
 
 
 
 
posts/welcome.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ title = "Welcome Page"
4
+ description = "Introduction"
5
+ date = "2022-01-26"
6
+ thumbnail = "images/huggingface_logo.png"
7
+
8
+ def run_article():
9
+ st.markdown("""
10
+ # Welcome!
11
+
12
+ Welcome to the Task Exploration Activity for hate speech detection! In this series of modules, you'll learn about the history of hate speech detection as a task in the larger pipeline of automatic content moderation (ACM). You'll also be able to interact with and compare datasets and models built for this task.
13
+
14
+ The goal of this exploration is to share the design considerations and challenges faced when using algorithms to detect hate speech.
15
+ """)