An AI-powered web application that recommends suitable drugs based on user symptoms or medical data. Built with a Python backend and a modern ReactJS frontend, the system uses machine learning to provide intelligent suggestions for healthcare purposes.
- 🤖 AI/ML model to recommend drugs based on symptoms or patient data
- 🧠 Backend powered by Python (Flask / FastAPI)
- 🌐 Frontend built with ReactJS (Tailwind CSS / Material UI optional)
- 🔒 Secure user input handling
- 📊 Model interpretability (optional: SHAP, LIME)
- 📁 Extensible for integration with EHR/EMR systems
- Python 3.x
- Flask / FastAPI
- Scikit-learn / TensorFlow / PyTorch (choose one based on your model)
- Pandas, NumPy
- RESTful API
- ReactJS
- Axios (for API communication)
- Tailwind CSS / Bootstrap / Material UI (optional)
git clone https://github.com/daveontrack/drug-recommendation.git
cd drug-recommendation
cd backend
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
python app.py # or uvicorn main:app --reload if using FastAPI