PietroMSB / DrugSideEffects

Project for the prediction of drug side-effect occurrences in the general population with Graph Neural Networks.
7 stars 2 forks source link

Help it's urgent, comment to this please urgently #4

Open chinu412 opened 1 week ago

chinu412 commented 1 week ago

Hii sir, I want to use your project but as a non tech student I have zero knowledge in coding but I want to use it ,can you please guide me regarding how to install it to my laptop.. please comment to this as soon as possible

PietroMSB commented 1 week ago

Dear chinu412, Actually, even if you do not have much experience in the AI field and in IT in general, it should be possible for you to use this repo. The first thing you need to do is to install python, either using Anaconda or any other virtual environment manager of your choice. After this, you'll need to create a virtual environment: with Anaconda you can just open your shell (or Anaconda Prompt on Windows) and type: conda create -n drugnn_env Then you can activate your environment as per instructions by typing: conda activate drugnn_env After this you can install every package you need: python, numpy, tensorflow, etc.... by typing: conda install [PACKAGE NAME] Once you have installed all the required packages (basically tensorflow and its dependencies), you can just download this repo and copy-paste it where you need it, and run the python scripts you need for your analysis. The functionalities of the python scripts are explained in the readme.md file.