- 添加 requirements.txt 依赖清单 - 创建模块目录结构 (dashboard, predictor, voice_assistant) - 添加数据文件 心血管疾病.xlsx Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
40 lines
670 B
Plaintext
40 lines
670 B
Plaintext
# ============================================
|
|
# CardioAI - 心血管疾病智能辅助系统
|
|
# ============================================
|
|
|
|
# Conda 环境创建与激活说明:
|
|
# 请在终端执行以下命令创建并激活虚拟环境:
|
|
#
|
|
# 1. 创建环境:
|
|
# conda create -n cardioenv python=3.10
|
|
#
|
|
# 2. 激活环境:
|
|
# conda activate cardioenv
|
|
#
|
|
# 3. 安装依赖:
|
|
# pip install -r requirements.txt
|
|
# ============================================
|
|
|
|
# 数据处理
|
|
pandas
|
|
openpyxl
|
|
numpy
|
|
|
|
# 机器学习
|
|
scikit-learn
|
|
xgboost
|
|
joblib
|
|
|
|
# 数据可视化
|
|
streamlit
|
|
plotly
|
|
|
|
# Web 服务
|
|
Flask
|
|
python-dotenv
|
|
|
|
# AI/大模型集成
|
|
langchain-openai
|
|
dashscope
|
|
requests
|