Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -47,4 +47,36 @@ language:
|
|
47 |
- en
|
48 |
size_categories:
|
49 |
- 10K<n<100K
|
50 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
- en
|
48 |
size_categories:
|
49 |
- 10K<n<100K
|
50 |
+
---
|
51 |
+
|
52 |
+
# Silent Signals #
|
53 |
+
**A dataset of dog whistle use cases in informal and formal discourse.** A dog whistle is a form of coded communication that carries a secondary meaning to specific audiences and is often weaponized for racial and socioeconomic discrimination. Dog whistling historically originated from United States politics, but in recent years has taken root in social media as a means of evading hate speech detection systems and maintaining plausible deniability.
|
54 |
+
|
55 |
+
We developed an approach for word-sense disambiguation of dog whistles from standard speech using Large Language Models (LLMs), and leveraged this technique to create a dataset of 16,550 high-confidence coded examples of dog whistles used in formal and informal communication. Silent Signals is the largest dataset of disambiguated dog whistle usage, created for applications in hate speech detection, neology, and political science.
|
56 |
+
|
57 |
+
**To be published at ACL 2024!**
|
58 |
+
|
59 |
+
📄 **Paper Link** - [Silent Signals, Loud Impact: LLMs for Word-Sense Disambiguation of Coded Dog Whistles](https://arxiv.org/abs/2406.06840)<br>
|
60 |
+
💻 **Dataset webpage** - Coming soon 🚀
|
61 |
+
|
62 |
+
<!-- ![head_figure_large.png](https://cdn-uploads.huggingface.co/production/uploads/632d02054a4991e711591c34/m70hfQTN2Aw7t3Ilkga4u.png) -->
|
63 |
+
<centering><img src="https://cdn-uploads.huggingface.co/production/uploads/632d02054a4991e711591c34/m70hfQTN2Aw7t3Ilkga4u.png" alt="head_figure" width="400"/></centering>
|
64 |
+
|
65 |
+
## Dataset Schema ##
|
66 |
+
|
67 |
+
| <nobr>Field Name </nobr>| <nobr>Type</nobr> | <nobr>Example</nobr> | <nobr>Description</nobr> |
|
68 |
+
|:------------|:------|:---------|:-------------|
|
69 |
+
| <nobr>**dog_whistle**</nobr> | <nobr>str</nobr> | <nobr>"illegals"</nobr> | <nobr>Dog whistle word or term.</nobr> |
|
70 |
+
| <nobr>**dog_whistle_root**</nobr> | <nobr>str</nobr> | <nobr>"illegal immigrant"</nobr> | <nobr>The root form of the dog whistle,<br> as there could be multiple variations.</nobr> |
|
71 |
+
| <nobr>**ingroup**</nobr> | <nobr>str</nobr> | <nobr>"anti-Latino"</nobr> | <nobr>The community that uses the dog whistle.</nobr> |
|
72 |
+
| <nobr>**content**</nobr> | <nobr>str</nobr> | <nobr>"In my State of Virginia, the governor put a stop <br>to the independent audits that were finding <br>thousands of illegals on the roll."</nobr> | <nobr>Text containing the dog whistle.</nobr> |
|
73 |
+
| <nobr>**date**</nobr> | <nobr>str</nobr> | <nobr>"11/14/2016"</nobr> | <nobr>Date of comment, formatted as `mm/dd/yyyy`.</nobr> |
|
74 |
+
| <nobr>**speaker**</nobr> | <nobr>str</nobr> | <nobr>None</nobr> | <nobr>Speaker, included for U.S. Congressional speech <br>excerpts and Null for Reddit comments.</nobr> |
|
75 |
+
| <nobr>**chamber**</nobr> | <nobr>str</nobr> | <nobr>None</nobr> | <nobr>Chamber of Congress, 'S' for Senate, <br>'H' for House of Representatives, and <br>Null for Reddit comments.</nobr> |
|
76 |
+
| <nobr>**subreddit**</nobr> | <nobr>str</nobr> | <nobr>"The_Donald"</nobr> | <nobr>Subreddit where the comment was posted,<br> Null for Congressional data.</nobr> |
|
77 |
+
| <nobr>**source**</nobr> | <nobr>str</nobr> | <nobr>"PRAW API"</nobr> | <nobr>The source or method of data collection.</nobr> |
|
78 |
+
| <nobr>**definition**</nobr> | <nobr>str</nobr> | <nobr>"Latino, especially Mexican, immigrants <br>regardless of documentation."</nobr> | <nobr>Definition of the dog whistle, sourced from the <br>Allen AI Dog Whistle Glossary.</nobr> |
|
79 |
+
| <nobr>**type**</nobr> | <nobr>str</nobr> | <nobr>"Informal"</nobr> | <nobr>Type of content, formal or informal.</nobr> |
|
80 |
+
| <nobr>**party**</nobr> | <nobr>str</nobr> | <nobr>None</nobr> | <nobr>The political party affiliation of the speaker, <br>available only for U.S. Congressional excerpts.</nobr> |
|
81 |
+
|
82 |
+
> NOTE: The dog whistles terms and definitions that enabled this research and data collection were sourced from the [Allen AI Dog Whistles Dataset](https://dogwhistles.allen.ai/).
|