liupf commited on
Commit
6c377b6
1 Parent(s): da6aecf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -1
README.md CHANGED
@@ -8,4 +8,32 @@ tags:
8
  - medical
9
  size_categories:
10
  - 100K<n<1M
11
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  - medical
9
  size_categories:
10
  - 100K<n<1M
11
+ ---
12
+
13
+ ## Overview
14
+
15
+ The dataset in this study is a Drug-Drug Interaction Event (DDIE) dataset obtained from DeepDDI 2. It includes detailed information on 2,386 drugs, each represented by a 50-dimensional Principal Components Analysis (PCA) feature vector, and the corresponding SMILES strings. Additionally, drug descriptions from DDInter and DrugBank have been integrated into the dataset.
16
+
17
+ The DDIE dataset comprises 222,127 drug pairs, enabling the prediction of 113 different DDIE types. The interaction types are categorized within a set, with the specific interaction type between drug `i` and drug `j`.
18
+
19
+ Addressing few-shot scenarios is crucial due to the frequent occurrence of rare and poorly documented drug interactions in clinical settings, which present significant challenges.
20
+
21
+ ## Data Sample Distribution
22
+
23
+ The following table shows the distribution of data samples across different interaction frequency categories in the training, validation, and test sets:
24
+
25
+ | Frequency | Train | Valid | Test |
26
+ |-----------------|--------|--------|--------|
27
+ | Common (>50) | 44,126 | 44,113 | 132,110|
28
+ | Few (15-50) | 108 | 128 | 298 |
29
+ | Rare (<15) | 43 | 34 | 85 |
30
+
31
+ This categorization into 'common', 'few', and 'rare' is based on the frequency of DDIE occurrences, which helps address the challenges posed by different frequency categories in real-world scenarios. Additionally, categories with fewer than two samples were removed, and the remaining samples were distributed into training, validation, and test sets at ratios of 2:2:6 to enhance the dataset's quality and reliability.
32
+
33
+ ## Knowledge Extraction
34
+
35
+ In our approach to knowledge extraction, we transform drug features into drug types. These features are then subjected to dimensionality reduction via t-SNE, reducing them to a 2-dimensional space suitable for visualization and clustering. This method is preferred for its effectiveness in preserving the local structure of the data while reducing dimensionality, which facilitates the identification of patterns and relationships inherent in the high-dimensional space.
36
+
37
+ For clustering the 2-dimensional drug features, we employ several algorithms that require a predefined number of clusters, such as K-means, Birch, and Agglomerative clustering. These techniques are chosen for their appropriateness for quantitative analysis and compatibility with dimensionality reduction techniques like t-SNE.
38
+
39
+ <img src="data_visualization.png" alt="Data Visualization" width="90%">