zihengh1 commited on
Commit
4bb6074
·
verified ·
1 Parent(s): d3014e7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -72
README.md CHANGED
@@ -34,11 +34,6 @@ multiple-choice questions** drawn from TCM licensing-exam material, plus a
34
  **5,250-question subset answered by 102 licensed TCM practitioners**, giving a human
35
  reference point for the same items a model is scored on.
36
 
37
- The human subset is what distinguishes this from a plain exam dump. Every question in it
38
- carries the individual answers of the doctors who attempted it, their perceived
39
- difficulty rating, and their categorization of the question — so model accuracy can be
40
- compared against a measured human baseline rather than an assumed passing score.
41
-
42
  ## Configs
43
 
44
  ### `qa` (default) — 33,872 rows
@@ -54,7 +49,7 @@ compared against a measured human baseline rather than an assumed passing score.
54
  | `is_multi_answer` | bool | True for 2,308 rows (6.8%). |
55
  | `explanation` | string / null | Reference rationale where the source provided one (20,692 rows). |
56
  | `topic` | string / null | Free-text topic label (23,779 rows, 5,738 distinct). Uncontrolled vocabulary — see Limitations. |
57
- | `difficulty_raw` | int64 | Source-provided integer. **Not a calibrated difficulty signal** — see Limitations. |
58
 
59
  ### `doctor_annotated` — 5,250 rows, 15,151 human answers
60
 
@@ -109,74 +104,9 @@ latter is the appropriate baseline for most model-vs-human claims.
109
  Doctors answered under exam-like conditions without reference material. Majority vote on
110
  a 3-rater panel uses `num_correct_raters >= 2`.
111
 
112
- ## Construction
113
-
114
- Questions were aggregated from Chinese TCM licensing-exam preparation material and from
115
- publicly released TCM exam datasets, then normalized to a uniform A–E multiple-choice
116
- schema. The following cleaning was applied to produce this release:
117
-
118
- | Step | Rows affected |
119
- |---|---|
120
- | Input | 38,279 |
121
- | Dropped — stem was a leaked answer key or explanation fragment, not a question | 14 |
122
- | Dropped — a correct option's text was duplicated verbatim by a distractor (unanswerable) | 34 |
123
- | Dropped — identical stem and options appearing with contradictory answer keys (32 groups) | 77 |
124
- | Dropped — exact duplicates of an earlier row (same stem, options and answer) | 4,282 |
125
- | **Output** | **33,872** |
126
-
127
- Text normalization applied to every retained field: literal `\"` escape artifacts
128
- unescaped, HTML markup and entities stripped, newlines and runs of whitespace collapsed
129
- to single spaces, leading/trailing whitespace removed, multi-answer keys sorted into
130
- canonical order. Empty `explanation` and `topic` strings became nulls.
131
-
132
- The internal source-document path recorded per question in the working collection was
133
- removed before release; it contained collection-workflow file paths and the names of
134
- individual contributors.
135
-
136
- ## Provenance and attribution
137
-
138
- TCMQA was assembled, cleaned and released by [TechTCM](https://techtcm.com/), including
139
- the collection of the human practitioner annotations.
140
-
141
- Roughly 29% of the pre-cleaning rows were derived from publicly released datasets, and
142
- the remainder from an exam-preparation bank collected by TechTCM. Because the per-row
143
- source path was removed, upstream attribution is given here at the dataset level:
144
-
145
- - [`FreedomIntelligence/TCM-Text-Exams`](https://huggingface.co/datasets/FreedomIntelligence/TCM-Text-Exams)
146
- - `FreedomIntelligence/2023_Pharmacist_Licensure_Examination-TCM_track`
147
- - [`JTBTechnology/tcm_exam_questions`](https://huggingface.co/datasets/JTBTechnology/tcm_exam_questions)
148
-
149
- If you redistribute or build on TCMQA, carry these attributions forward. Users with
150
- commercial intentions should check the terms of the upstream datasets directly rather
151
- than relying on this release's license alone.
152
-
153
- ## Limitations
154
-
155
- - **`difficulty_raw` is not a usable difficulty label.** It is uniformly `5` for every
156
- row imported from an external dataset and ranges 0–9 for internally collected rows, so
157
- it mostly encodes provenance rather than difficulty. It is retained only for
158
- traceability. For a real difficulty signal, use `perceived_difficulty` or
159
- `num_correct_raters` in the `doctor_annotated` config.
160
- - **`topic` is an uncontrolled vocabulary.** 5,738 distinct free-text strings at wildly
161
- varying granularity (from `中医基础理论` down to `胃痛`), and absent on 10,093 rows.
162
- Treat it as a weak hint, not a taxonomy. The `categories` field in
163
- `doctor_annotated` is a proper 10-way scheme, but it reflects each rater's judgment and
164
- raters sometimes disagree.
165
- - **Answer keys are as-published by the source material** and have not been independently
166
- re-adjudicated by a clinician. The 32 contradictory groups removed above are the cases
167
- where the collection disagreed with itself; single-source errors would not be caught.
168
- - **Mixed orthography.** Rows sourced from Taiwanese exams use traditional characters;
169
- most rows use simplified. No conversion was applied.
170
- - **218 rows in `doctor_annotated` share a `qa_id` with another row** — the same question
171
- was administered to more than one panel. Deduplicate on `qa_id` if you need one row per
172
- distinct question.
173
- - **Not medical advice.** These are exam items. Performance here says something about
174
- recall of TCM exam content and nothing about clinical safety or competence.
175
-
176
  ## Credit
177
 
178
- Built and maintained by **[TechTCM](https://techtcm.com/)**. If you use TCMQA in your
179
- work, please cite it and link back to <https://techtcm.com/>.
180
 
181
  ## License
182
 
 
34
  **5,250-question subset answered by 102 licensed TCM practitioners**, giving a human
35
  reference point for the same items a model is scored on.
36
 
 
 
 
 
 
37
  ## Configs
38
 
39
  ### `qa` (default) — 33,872 rows
 
49
  | `is_multi_answer` | bool | True for 2,308 rows (6.8%). |
50
  | `explanation` | string / null | Reference rationale where the source provided one (20,692 rows). |
51
  | `topic` | string / null | Free-text topic label (23,779 rows, 5,738 distinct). Uncontrolled vocabulary — see Limitations. |
52
+ | `difficulty_raw` | int64 | Source-provided integer. |
53
 
54
  ### `doctor_annotated` — 5,250 rows, 15,151 human answers
55
 
 
104
  Doctors answered under exam-like conditions without reference material. Majority vote on
105
  a 3-rater panel uses `num_correct_raters >= 2`.
106
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
107
  ## Credit
108
 
109
+ Built and maintained by **[TechTCM](https://techtcm.com/)**.
 
110
 
111
  ## License
112