Upload README.md with huggingface_hub
Browse files
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 |
|
| 38 |
-
|
|
| 39 |
-
|
|
| 40 |
-
|
| 41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
|
| 43 |
-
|
|
|
|
|
|
|
| 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 |
-
-
|
|
|
|
|
|
|
| 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.
|