--- dataset_info: features: - name: messages dtype: binary - name: keywords dtype: string splits: - name: train num_bytes: 78801592 num_examples: 87746 download_size: 44468447 dataset_size: 78801592 configs: - config_name: default data_files: - split: train path: data/train-* license: mit task_categories: - conversational language: - en tags: - not-for-all-audiences size_categories: - 10K<n<100K --- if n <= 10: numOfKeywords = 5 elif n <= 20 and n > 10: numOfKeywords = 10 elif n <= 50 and n > 20: numOfKeywords = 15 elif n > 50: numOfKeywords = 20 # 4chan-Paranormal-Conversations Dialogs taken from 4chan's "/x/" Paranormal image board. The conversations in this dataset occured between 2021 and 2022. 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. ### Warning: The content of the dialogs can cause offence. ## Columns: #### messages * Dialogs from the forum, back and forth conversations constructed via direct replies. #### keywords * Keyword analysis of the thread from which the dialog was taken. Providing more context to the discussion. * The number of keywords is related to the length of the thread from which the dialog was taken. | Number of Posts | Number of Keywords | |--------------|-----------------| | n < 10 | 5 | | 10 <= n < 20 | 10 | | 20 <= n < 50 | 15 | | 50 <= n | 20 |