Update README.md
Browse files
README.md
CHANGED
@@ -7,20 +7,22 @@ license: mit
|
|
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 |
-
|
11 |
|
12 |
-
|
|
|
|
|
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.
|
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.
|
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.
|
26 |
- simple mapping of index to NCTID's for filtering/reference throughout IR program, corresponding to vector, texts representation order
|
|
|
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 |
+
Note: They are currently saved as text files because of the downstream task in ctmatch, though in the future they may be converted to .csv.
|
11 |
|
12 |
+
Each .txt file has exactly 374648 lines of corresponding data:
|
13 |
+
|
14 |
+
`doc_texts.txt`
|
15 |
- texts extracted from processed documents using several fields including eligbility min and max age, and eligbility criteria, structured as this example from NCT00000102:
|
16 |
"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"
|
17 |
|
18 |
|
19 |
+
`doc_categories.txt`:
|
20 |
- 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:
|
21 |
cancer,cardiac,endocrine,gastrointestinal,genetic,healthy,infection,neurological,other,pediatric,psychological,pulmonary,renal,reproductive
|
22 |
|
23 |
+
`doc_embeddings.txt`:
|
24 |
- 1 x 384 vectors of embeddings taken from last hidden state of CTMatch.embedding_model.encode(doc_text) using SentenceTransformers
|
25 |
|
26 |
|
27 |
+
`index2docid.txt`:
|
28 |
- simple mapping of index to NCTID's for filtering/reference throughout IR program, corresponding to vector, texts representation order
|