ddidacus commited on
Commit
2ff5a62
·
verified ·
1 Parent(s): ff0af52

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +24 -34
README.md CHANGED
@@ -1,50 +1,40 @@
1
  ---
2
  license: mit
3
- configs:
4
- - config_name: default
5
- data_files:
6
- - split: train
7
- path: data/train-*
8
- - split: test
9
- path: data/test-*
10
- dataset_info:
11
- features:
12
- - name: conversation
13
- list:
14
- - name: content
15
- dtype: string
16
- - name: role
17
- dtype: string
18
- - name: origin
19
- dtype: string
20
- splits:
21
- - name: train
22
- num_bytes: 35494601343
23
- num_examples: 4074222
24
- - name: test
25
- num_bytes: 358533438
26
- num_examples: 41154
27
- download_size: 35787321887
28
- dataset_size: 35853134781
29
  ---
30
  # Guard-GLP Benign Conversations
31
 
32
  Sanitized collection of benign multi-turn conversations, using **train splits only**.
33
 
 
 
 
 
 
 
 
 
34
  ## Composition
35
  | Source | Samples |
36
  |--------|---------|
37
- | lmsys | 942,157 |
38
- | wildchat | 524,274 |
39
- | wildguard | 7,778 |
40
- | wildjailbreak | 128,781 |
41
- | **Total** | **1,602,990** |
 
 
 
 
42
 
43
- **Total tokens:** 1,124,232,118 (Llama 3.2 1B Instruct tokenizer)
 
 
44
 
45
  ## Sanitization
46
- - **LMSYS Chat 1M & WildChat**: filtered via OpenAI moderation labels (all flagged categories removed)
47
  - **WildGuardMix**: removed adversarial and harmful-labeled prompts/responses
48
- - **WildJailbreak**: removed entries with harmful data types
 
 
49
 
50
  Only benign conversations are retained.
 
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
4
  # Guard-GLP Benign Conversations
5
 
6
  Sanitized collection of benign multi-turn conversations, using **train splits only**.
7
 
8
+ ## Pipeline
9
+ 1. Load LMSYS Chat 1M and WildChat-4.8M (sharded across 8 worker(s))
10
+ 2. Filter harmful/adversarial samples via OpenAI moderation labels
11
+ 3. Normalise conversation format across sources
12
+ 4. Exact de-duplication (conversation hash)
13
+ 6. De-contaminate against WildJailbreak (train + eval configs)
14
+ 7. Hold out a uniformly sampled test split
15
+
16
  ## Composition
17
  | Source | Samples |
18
  |--------|---------|
19
+ | lmsys | 941,476 |
20
+ | wildchat_4m | 3,173,900 |
21
+ | **Total** | **4,115,376** |
22
+
23
+ ## Splits
24
+ | Split | Samples |
25
+ |-------|---------|
26
+ | train | 4,074,222 |
27
+ | test | 41,154 |
28
 
29
+ Test split is a uniformly sampled 1% holdout (seed 42).
30
+
31
+ Total tokens (meta-llama/Meta-Llama-3.1-8B-Instruct chat template): **10,302,302,353**
32
 
33
  ## Sanitization
34
+ - **LMSYS Chat 1M, WildChat & WildChat-4.8M**: filtered via OpenAI moderation labels (all flagged categories removed)
35
  - **WildGuardMix**: removed adversarial and harmful-labeled prompts/responses
36
+ - Exact de-duplication across all sources
37
+
38
+ - Embedding-based de-contamination against WildJailbreak (Qwen3-Embedding-8B, cosine similarity > 0.99 removed)
39
 
40
  Only benign conversations are retained.