feat: 初始化 CardioAI 项目结构
- 添加 requirements.txt 依赖清单 - 创建模块目录结构 (dashboard, predictor, voice_assistant) - 添加数据文件 心血管疾病.xlsx Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
BIN
ai_code/aicodes/data/心血管疾病.xlsx
Normal file
BIN
ai_code/aicodes/data/心血管疾病.xlsx
Normal file
Binary file not shown.
39
ai_code/aicodes/requirements.txt
Normal file
39
ai_code/aicodes/requirements.txt
Normal 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
|
||||||
Reference in New Issue
Block a user