Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
+
|
| 5 |
+
**CTMatch Information Retrieval Dataset**
|
| 6 |
+
|
| 7 |
+
This is a dataset of processed clinical trials documents, somehwat of a duplication of that found in `datasets/ir_datasets`
|
| 8 |
+
except that these have been preprocessed with ctproc to clean and extract useful fields from the clinical trial documents.
|
| 9 |
+
|
| 10 |
+
Each of the has exactly 374648 lines of corresponding data:
|
| 11 |
+
|
| 12 |
+
`doc_texts.csv`
|
| 13 |
+
- texts extracted from processed documents using several fields including eligbility min and max age, and eligbility criteria, structured as this example from NCT00000102:
|
| 14 |
+
"Inclusion Criteria: diagnosed with Congenital Adrenal Hyperplasia (CAH) normal ECG during baseline evaluation, Exclusion Criteria: history of liver disease, or elevated liver function tests history of cardiovascular disease"
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
`doc_categories.csv`:
|
| 18 |
+
- 1 x 15 vectors of somewhat arbitrarily chosen topic probabilities (softmax output) generated by zero-shot classification model, CTMatch.category_model(doc['condition']) lexically ordered as such:
|
| 19 |
+
cancer,cardiac,endocrine,gastrointestinal,genetic,healthy,infection,neurological,other,pediatric,psychological,pulmonary,renal,reproductive
|
| 20 |
+
|
| 21 |
+
`doc_embeddings.csv`:
|
| 22 |
+
- 1 x 384 vectors of embeddings taken from last hidden state of CTMatch.embedding_model.encode(doc_text) using SentenceTransformers
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
`index2docid.csv`:
|
| 26 |
+
- simple mapping of index to NCTID's for filtering/reference throughout IR program, corresponding to vector, texts representation order
|