├── .gitignore ├── README.md ├── data ├── cell line features.csv ├── cell line.csv ├── combination.csv └── smiles.csv ├── dataset.py ├── main.py ├── models ├── DeepDDS.py ├── GAT.py └── Model.py ├── requirements.txt ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuMenglii/Chemical-bond-enhanced-Graph-Attention-and-Factorization-Machine-Network-for-Drug-Synergy-Prediction/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuMenglii/Chemical-bond-enhanced-Graph-Attention-and-Factorization-Machine-Network-for-Drug-Synergy-Prediction/HEAD/README.md -------------------------------------------------------------------------------- /data/cell line features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuMenglii/Chemical-bond-enhanced-Graph-Attention-and-Factorization-Machine-Network-for-Drug-Synergy-Prediction/HEAD/data/cell line features.csv -------------------------------------------------------------------------------- /data/cell line.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuMenglii/Chemical-bond-enhanced-Graph-Attention-and-Factorization-Machine-Network-for-Drug-Synergy-Prediction/HEAD/data/cell line.csv -------------------------------------------------------------------------------- /data/combination.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuMenglii/Chemical-bond-enhanced-Graph-Attention-and-Factorization-Machine-Network-for-Drug-Synergy-Prediction/HEAD/data/combination.csv -------------------------------------------------------------------------------- /data/smiles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuMenglii/Chemical-bond-enhanced-Graph-Attention-and-Factorization-Machine-Network-for-Drug-Synergy-Prediction/HEAD/data/smiles.csv -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuMenglii/Chemical-bond-enhanced-Graph-Attention-and-Factorization-Machine-Network-for-Drug-Synergy-Prediction/HEAD/dataset.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuMenglii/Chemical-bond-enhanced-Graph-Attention-and-Factorization-Machine-Network-for-Drug-Synergy-Prediction/HEAD/main.py -------------------------------------------------------------------------------- /models/DeepDDS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuMenglii/Chemical-bond-enhanced-Graph-Attention-and-Factorization-Machine-Network-for-Drug-Synergy-Prediction/HEAD/models/DeepDDS.py -------------------------------------------------------------------------------- /models/GAT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuMenglii/Chemical-bond-enhanced-Graph-Attention-and-Factorization-Machine-Network-for-Drug-Synergy-Prediction/HEAD/models/GAT.py -------------------------------------------------------------------------------- /models/Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuMenglii/Chemical-bond-enhanced-Graph-Attention-and-Factorization-Machine-Network-for-Drug-Synergy-Prediction/HEAD/models/Model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuMenglii/Chemical-bond-enhanced-Graph-Attention-and-Factorization-Machine-Network-for-Drug-Synergy-Prediction/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuMenglii/Chemical-bond-enhanced-Graph-Attention-and-Factorization-Machine-Network-for-Drug-Synergy-Prediction/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuMenglii/Chemical-bond-enhanced-Graph-Attention-and-Factorization-Machine-Network-for-Drug-Synergy-Prediction/HEAD/utils.py --------------------------------------------------------------------------------