agentlans commited on
Commit
e7fa672
·
verified ·
1 Parent(s): 54eddc7

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +93 -0
README.md ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ configs:
3
+ - config_name: en_prompts
4
+ data_files:
5
+ - path:
6
+ - en_prompts.jsonl.zst
7
+ split: train
8
+ - config_name: sample_k100
9
+ data_files:
10
+ - path:
11
+ - sample_k100.jsonl.zst
12
+ split: train
13
+ - config_name: sample_k1000
14
+ data_files:
15
+ - path:
16
+ - sample_k1000.jsonl.zst
17
+ split: train
18
+ - config_name: sample_k10000
19
+ data_files:
20
+ - path:
21
+ - sample_k10000.jsonl.zst
22
+ split: train
23
+ - config_name: sample_k100000
24
+ data_files:
25
+ - path:
26
+ - sample_k100000.jsonl.zst
27
+ split: train
28
+ license: odc-by
29
+ task_categories:
30
+ - text-generation
31
+ - text-classification
32
+ language:
33
+ - en
34
+ tags:
35
+ - chatgpt
36
+ - prompts
37
+ - wildchat
38
+ ---
39
+ # allenai/WildChat-4.8M English Prompts
40
+
41
+ ## Dataset Summary
42
+ This dataset contains real user-submitted prompts to ChatGPT, extracted from the English portion of the [allenai/WildChat-4.8M](https://huggingface.co/datasets/allenai/WildChat-4.8M) collection.
43
+ It serves as a large-scale resource for analyzing user intent, conversational diversity, and prompt engineering patterns.
44
+
45
+ ### Files
46
+ - `en_prompts`: All English-language first messages from user conversations.
47
+ - Each record represents the first user prompt.
48
+ - Exact duplicates are removed.
49
+ - Similar prompts may still remain.
50
+
51
+ - `sample_k*`: Randomly sampled and semantically clustered subsets.
52
+ - Each subset has been clustered from 200 000 prompts sampled from `en_prompts`.
53
+ - Agglomerative clustering performed on embeddings from the [MongoDB/mdbr-leaf-mt](https://huggingface.co/MongoDB/mdbr-leaf-mt) model.
54
+ - Prompts longer than 500 tokens (using the [meta-llama/Llama-3.1-8B-Instruct](https://huggingface.co/meta-llama/Llama-3.1-8B-Instruct)) were truncated to the first 100 and last 100 tokens.
55
+
56
+ ## Usage
57
+ This dataset can support research and applications including:
58
+ - Understanding common user prompt intentions.
59
+ - Improving model safety, robustness, and interpretability.
60
+ - Designing prompt classifiers or personalization heuristics.
61
+ - Studying real-world conversational behaviors.
62
+
63
+ ## Limitations
64
+ - Contains authentic user inputs, which may include offensive or biased content.
65
+ - Prompts have been de-identified but not exhaustively filtered.
66
+ - Semantic clustering may produce imperfect groupings due to embedding limitations.
67
+
68
+ ## License
69
+
70
+ ODC-BY like the original dataset.
71
+
72
+ Please consider citing the original authors if you find this derived dataset useful:
73
+
74
+ ```
75
+ @inproceedings{
76
+ zhao2024wildchat,
77
+ title={WildChat: 1M Chat{GPT} Interaction Logs in the Wild},
78
+ author={Wenting Zhao and Xiang Ren and Jack Hessel and Claire Cardie and Yejin Choi and Yuntian Deng},
79
+ booktitle={The Twelfth International Conference on Learning Representations},
80
+ year={2024},
81
+ url={https://openreview.net/forum?id=Bl8u7ZRlbM}
82
+ }
83
+ ```
84
+
85
+ ```
86
+ @inproceedings{deng2024wildvis,
87
+ title = "{W}ild{V}is: Open Source Visualizer for Million-Scale Chat Logs in the Wild",
88
+ author = "Deng, Yuntian and Zhao, Wenting and Hessel, Jack and Ren, Xiang and Cardie, Claire and Choi, Yejin",
89
+ booktitle = "Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing: System Demonstrations",
90
+ year = "2024",
91
+ url = "https://aclanthology.org/2024.emnlp-demo.50/"
92
+ }
93
+ ```