semaj83 commited on
Commit
27f5946
1 Parent(s): 0a444f8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md CHANGED
@@ -16,3 +16,26 @@ These 2 datasets contain no patient identifying information are openly available
16
  #### CSIRO: https://data.csiro.au/collection/csiro:17152
17
 
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  #### CSIRO: https://data.csiro.au/collection/csiro:17152
17
 
18
 
19
+
20
+ Additionally, for the IR task, other feature representations of the documents have been created, each of these has exactly 374648 lines of corresponding data:
21
+
22
+ doc_texts.csv
23
+ - texts extracted from processed documents using several fields including eligbility min and max age, and eligbility criteria, structured as this example from NCT00000102:
24
+ "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"
25
+
26
+
27
+ doc_categories.csv:
28
+ - 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:
29
+ cancer,cardiac,endocrine,gastrointestinal,genetic,healthy,infection,neurological,other,pediatric,psychological,pulmonary,renal,reproductive
30
+
31
+ doc_embeddings.csv:
32
+ - 1 x 384 vectors of embeddings taken from last hidden state of CTMatch.embedding_model.encode(doc_text) using SentenceTransformers
33
+
34
+
35
+ index2docid.csv
36
+ - simple mapping of index to NCTID's for filtering/reference throughout IR program, corresponding to vector, texts representation order
37
+
38
+ see repo for more information:
39
+ https://github.com/semajyllek/ctmatch
40
+
41
+