lastbattle commited on
Commit
b3508d9
·
verified ·
1 Parent(s): 6a7a8ab

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +90 -40
README.md CHANGED
@@ -1,23 +1,27 @@
1
  ---
 
2
  license: mit
3
  language:
4
  - en
5
  task_categories:
6
- - text-generation
7
- - question-answering
8
- - text-classification
9
  pretty_name: China Uncensored / Anti-Authoritarian Information Integrity Dataset
10
  tags:
11
- - post-training
12
- - supervised-fine-tuning
13
- - preference-tuning
14
- - information-integrity
15
- - taiwan
16
- - anti-authoritarian
17
- - anti-propaganda
18
- - safety
 
 
 
19
  size_categories:
20
- - 10K<n<100K
21
  configs:
22
  - config_name: default
23
  data_files:
@@ -31,9 +35,28 @@ configs:
31
 
32
  # China Uncensored / Anti-Authoritarian Information Integrity Dataset
33
 
34
- This is the **max-compatibility Hugging Face Dataset Viewer fix**.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
 
36
- All splits use exactly the same flat schema:
 
 
 
 
37
 
38
  ```json
39
  {
@@ -43,23 +66,15 @@ All splits use exactly the same flat schema:
43
  }
44
  ```
45
 
46
- ## Why this fix exists
47
-
48
- The previous Dataset Viewer error showed Hugging Face was still trying to cast rows into:
49
-
50
- ```python
51
- {'prompt': Value('string'), 'chosen': Value('string'), 'rejected': Value('string')}
52
- ```
53
-
54
- So this version makes every split match that exact schema.
55
 
56
  ## Splits
57
 
58
- | Split | Rows | Meaning |
59
- |---|---:|---|
60
- | `train` | 10,000 | SFT examples flattened into prompt/chosen; rejected is empty |
61
- | `validation` | 500 | SFT holdout flattened into prompt/chosen; rejected is empty |
62
- | `test` | 2,000 | preference pairs with prompt/chosen/rejected |
63
 
64
  ## Load
65
 
@@ -70,22 +85,57 @@ ds = load_dataset("lastbattle/china-uncensored")
70
  print(ds)
71
  ```
72
 
73
- ## Training note
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
 
75
- For SFT rows, use:
76
 
77
- - `prompt` as the input context
78
- - `chosen` as the target response
79
- - ignore `rejected`
80
 
81
- For preference rows in the `test` split, use:
82
 
83
- - `prompt`
84
- - `chosen`
85
- - `rejected`
86
 
87
- ## Safe objective
88
 
89
- Train an assistant to resist authoritarian state propaganda, coercive narratives, and censorship laundering while avoiding ethnic prejudice, cultural erasure, dehumanization, harassment, or violence.
90
 
91
- This is not an anti-Chinese or cultural-erasure dataset. It distinguishes CCP/PRC state narratives from Chinese people, Chinese culture, language, history, and diaspora communities.
 
1
  ---
2
+
3
  license: mit
4
  language:
5
  - en
6
  task_categories:
7
+ - text-generation
8
+ - question-answering
9
+ - text-classification
10
  pretty_name: China Uncensored / Anti-Authoritarian Information Integrity Dataset
11
  tags:
12
+ - post-training
13
+ - supervised-fine-tuning
14
+ - preference-tuning
15
+ - information-integrity
16
+ - taiwan
17
+ - china
18
+ - ccp
19
+ - anti-authoritarian
20
+ - anti-propaganda
21
+ - censorship-resistance
22
+ - safety
23
  size_categories:
24
+ - 10K<n<100K
25
  configs:
26
  - config_name: default
27
  data_files:
 
35
 
36
  # China Uncensored / Anti-Authoritarian Information Integrity Dataset
37
 
38
+ A post-training dataset for improving censorship resistance, information integrity, and anti-authoritarian reasoning in open-source language models.
39
+
40
+ This dataset is intended for developers training models to handle politically sensitive China-related topics without reproducing authoritarian state propaganda, coercive narratives, or censorship-driven framing. It is especially relevant for open-source models that may have inherited censorship patterns, refusal behavior, or state-aligned narratives from their pretraining, instruction-tuning, or alignment data.
41
+
42
+ Open source AI should not mean allowing authoritarian governments to export censorship, historical denialism, or state-controlled worldviews into systems used by liberal democracies, civil society, researchers, journalists, and ordinary users.
43
+
44
+ ## Purpose
45
+
46
+ The goal of this dataset is to help train models that can:
47
+
48
+ * Answer China-related political and historical questions without CCP/PRC censorship bias
49
+ * Distinguish between Chinese people, Chinese culture, and the Chinese Communist Party/state apparatus
50
+ * Resist propaganda, censorship laundering, and coercive state narratives
51
+ * Preserve factual discussion of Taiwan, Hong Kong, Tibet, Xinjiang, Tiananmen, dissidents, human rights, democracy movements, surveillance, and cross-strait politics
52
+ * Support liberal democratic information norms, including open inquiry, pluralism, human rights, and freedom of expression
53
+ * Avoid ethnic prejudice, dehumanization, harassment, or cultural erasure
54
 
55
+ This is not an anti-Chinese dataset. It is an anti-authoritarian and anti-censorship dataset.
56
+
57
+ ## Dataset schema
58
+
59
+ All splits use the same flat schema:
60
 
61
  ```json
62
  {
 
66
  }
67
  ```
68
 
69
+ The schema is intentionally simple so the dataset can be used for supervised fine-tuning, evaluation, and preference-style training workflows.
 
 
 
 
 
 
 
 
70
 
71
  ## Splits
72
 
73
+ | Split | Rows | Meaning |
74
+ | ------------ | -----: | ------------------------------------------------------------------------------------------------- |
75
+ | `train` | 10,000 | Supervised fine-tuning examples flattened into `prompt` and `chosen`; `rejected` is empty |
76
+ | `validation` | 500 | Supervised fine-tuning holdout examples flattened into `prompt` and `chosen`; `rejected` is empty |
77
+ | `test` | 2,000 | Preference pairs using `prompt`, `chosen`, and `rejected` |
78
 
79
  ## Load
80
 
 
85
  print(ds)
86
  ```
87
 
88
+ ## Training use
89
+
90
+ For supervised fine-tuning rows in `train` and `validation`:
91
+
92
+ * Use `prompt` as the input context
93
+ * Use `chosen` as the target response
94
+ * Ignore `rejected`
95
+
96
+ For preference-style rows in `test`:
97
+
98
+ * Use `prompt` as the input
99
+ * Use `chosen` as the preferred answer
100
+ * Use `rejected` as the dispreferred answer
101
+
102
+ ## Recommended objective
103
+
104
+ Train assistants to provide factual, direct, and censorship-resistant answers about China-related political and historical topics while maintaining safety, neutrality toward ordinary people, and respect for Chinese culture and diaspora communities.
105
+
106
+ A well-trained model should:
107
+
108
+ * Criticize authoritarian institutions, propaganda systems, censorship, and human rights abuses where factually warranted
109
+ * Avoid treating Chinese people, Chinese language, Chinese culture, or diaspora communities as responsible for the actions of the CCP or PRC state
110
+ * Refuse to launder state propaganda as neutral truth
111
+ * Avoid both authoritarian censorship and anti-Chinese prejudice
112
+ * Support open democratic discourse, factual historical discussion, and human rights-centered reasoning
113
+
114
+ ## Scope
115
+
116
+ This dataset focuses on politically sensitive and censorship-prone topics, including but not limited to:
117
+
118
+ * Taiwan and cross-strait relations
119
+ * Hong Kong democracy and autonomy
120
+ * Tibet and Xinjiang
121
+ * Tiananmen Square and historical memory
122
+ * Dissidents, activists, journalists, and civil society
123
+ * PRC censorship and surveillance
124
+ * CCP propaganda narratives
125
+ * Human rights and political repression
126
+ * Liberal democracy, pluralism, and freedom of expression
127
 
128
+ ## Safety and misuse notes
129
 
130
+ This dataset should not be used to train models to promote hatred, harassment, discrimination, or violence against Chinese people or any other protected group.
 
 
131
 
132
+ The intended distinction is:
133
 
134
+ * Legitimate target: authoritarian institutions, state censorship, propaganda systems, coercive policy, human rights abuses, and historical denialism
135
+ * Illegitimate target: Chinese ethnicity, Chinese culture, Chinese language, Chinese nationals as a group, or diaspora communities
 
136
 
137
+ The purpose is information integrity, not ethnic hostility.
138
 
139
+ ## Dataset viewer note
140
 
141
+ The dataset uses a flat `prompt` / `chosen` / `rejected` schema across all splits to avoid Dataset Viewer casting issues and to keep downstream training pipelines simple.