├── .gitignore ├── Framework.png ├── README.md ├── custom_loss.py ├── custom_metrics.py ├── data ├── drugbank.tab └── twosides_ge_500.zip ├── data_preprocessing.py ├── data_preprocessing_cold_start.py ├── ddi_datasets.py ├── layers.py ├── models.py └── train_on_fold.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanz76/GMPNN-CS/HEAD/.gitignore -------------------------------------------------------------------------------- /Framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanz76/GMPNN-CS/HEAD/Framework.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanz76/GMPNN-CS/HEAD/README.md -------------------------------------------------------------------------------- /custom_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanz76/GMPNN-CS/HEAD/custom_loss.py -------------------------------------------------------------------------------- /custom_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanz76/GMPNN-CS/HEAD/custom_metrics.py -------------------------------------------------------------------------------- /data/drugbank.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanz76/GMPNN-CS/HEAD/data/drugbank.tab -------------------------------------------------------------------------------- /data/twosides_ge_500.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanz76/GMPNN-CS/HEAD/data/twosides_ge_500.zip -------------------------------------------------------------------------------- /data_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanz76/GMPNN-CS/HEAD/data_preprocessing.py -------------------------------------------------------------------------------- /data_preprocessing_cold_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanz76/GMPNN-CS/HEAD/data_preprocessing_cold_start.py -------------------------------------------------------------------------------- /ddi_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanz76/GMPNN-CS/HEAD/ddi_datasets.py -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanz76/GMPNN-CS/HEAD/layers.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanz76/GMPNN-CS/HEAD/models.py -------------------------------------------------------------------------------- /train_on_fold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanz76/GMPNN-CS/HEAD/train_on_fold.py --------------------------------------------------------------------------------