A deep learning model to help users skim through abstracts of medical research papers.
Python and various Machine Learning libraries.
- Make sure you have Python installed and ready to go.
- Clone this repository onto your system.
- Create a new Python environment and install the dependencies in it. This can be done as follows:
- Open
command prompt
andcd
to the directory where you have cloned the repo. - Run the command
Python -m venv env
to create a new virtual environment namedenv
. - Activate the enviroment by running the command
env\Scripts\activate.bat
. - Install depencies by running the command
pip install -r requirements.txt
.
- Open
The above steps will create a python virtual environment and install the required depndencies in it. To go through the noteboook, follow these steps:
- Open
command prompt
andcd
to the directory where you have cloned the repo. - Activate the python environment by running the command
env\Scripts\activate.bat
. - View the notebook by running
jupyter notebook
.
Once your model is created by following the notebook, you may use Gradio
to create a custom GUI.