Datasets:
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
10K - 100K
Tags:
Not-For-All-Audiences
License:
Update README.md
Browse files
README.md
CHANGED
@@ -27,15 +27,29 @@ size_categories:
|
|
27 |
- 10K<n<100K
|
28 |
---
|
29 |
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
# 4chan-Paranormal-Conversations
|
33 |
-
Dialogs taken from 4chan's "/x/" Paranormal image board.
|
34 |
As the name suggests these diaglogs are largely related to esoterica and the metaphysical. In online forums conversations can distantly diverge from the original topic; as a true respresentation of this specific online community, the dataset includes these diverging dialogs.
|
35 |
-
|
36 |
The content of the dialogs can cause offence.
|
37 |
-
|
38 |
-
|
39 |
* Dialogs from the forum, back and forth conversations constructed via direct replies.
|
40 |
-
|
41 |
-
* Keyword analysis of the thread from which the dialog was taken. Providing more context to the discussion.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
- 10K<n<100K
|
28 |
---
|
29 |
|
30 |
+
if n <= 10:
|
31 |
+
numOfKeywords = 5
|
32 |
+
elif n <= 20 and n > 10:
|
33 |
+
numOfKeywords = 10
|
34 |
+
elif n <= 50 and n > 20:
|
35 |
+
numOfKeywords = 15
|
36 |
+
elif n > 50:
|
37 |
+
numOfKeywords = 20
|
38 |
|
39 |
# 4chan-Paranormal-Conversations
|
40 |
+
Dialogs taken from 4chan's "/x/" Paranormal image board. The conversations in this dataset occured between 2021 and 2022.
|
41 |
As the name suggests these diaglogs are largely related to esoterica and the metaphysical. In online forums conversations can distantly diverge from the original topic; as a true respresentation of this specific online community, the dataset includes these diverging dialogs.
|
42 |
+
### Warning:
|
43 |
The content of the dialogs can cause offence.
|
44 |
+
## Columns:
|
45 |
+
#### messages
|
46 |
* Dialogs from the forum, back and forth conversations constructed via direct replies.
|
47 |
+
#### keywords
|
48 |
+
* Keyword analysis of the thread from which the dialog was taken. Providing more context to the discussion.
|
49 |
+
* The number of keywords is related to the length of the thread from which the dialog was taken.
|
50 |
+
| Number of Posts | Number of Keywords |
|
51 |
+
|--------------|-----------------|
|
52 |
+
| n < 10 | 5 |
|
53 |
+
| 10 <= n < 20 | 10 |
|
54 |
+
| 20 <= n < 50 | 15 |
|
55 |
+
| 50 <= n | 20 |
|