33 lines
814 B
Plaintext
33 lines
814 B
Plaintext
# CardioAI - Cardiovascular Disease Intelligent Assistant System
|
|
# Python dependencies for the multi-module application
|
|
|
|
# Conda Environment Setup Instructions:
|
|
# 1. Create a new conda environment named 'cardioenv' with Python 3.10:
|
|
# conda create -n cardioenv python=3.10
|
|
# 2. Activate the environment:
|
|
# conda activate cardioenv
|
|
# 3. Install dependencies from this file:
|
|
# pip install -r requirements.txt
|
|
|
|
# Core data processing and machine learning
|
|
pandas>=2.0.0
|
|
openpyxl>=3.1.0
|
|
numpy>=1.24.0
|
|
scikit-learn>=1.3.0
|
|
xgboost>=2.0.0
|
|
joblib>=1.3.0
|
|
|
|
# Data visualization and dashboard
|
|
streamlit>=1.28.0
|
|
plotly>=5.18.0
|
|
|
|
# Web API and prediction server
|
|
Flask>=3.0.0
|
|
|
|
# Environment configuration
|
|
python-dotenv>=1.0.0
|
|
|
|
# AI and language model integration
|
|
langchain-openai>=0.0.5
|
|
dashscope>=1.14.0
|
|
requests>=2.31.0 |