feat: 初始化 CardioAI 项目结构

- 添加 requirements.txt 依赖清单
- 创建模块目录结构 (dashboard, predictor, voice_assistant)
- 添加数据文件 心血管疾病.xlsx

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
code_sam
2026-03-15 10:16:32 +08:00
parent d35cb66eb3
commit d74774ef0b
2 changed files with 39 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,39 @@
# ============================================
# 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