# SAID **Repository Path**: jicoder-nwpu/said ## Basic Information - **Project Name**: SAID - **Description**: 多模态情感情绪识别与智能交互应用 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2025-06-21 - **Last Updated**: 2025-10-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # SAID - 多模态情感情绪识别与智能交互应用 ### 部署说明 ```bash #配置web应用、情感识别算法环境 conda create --name said python=3.8 conda activate said pip install -r requirements.txt #配置智能引导算法环境 cd intelligence_interaction/algorithm/ conda create --name dialogue python=3.10 conda activate dialogue pip install -r requirements.txt #安装ollama下载模型 curl -fsSL https://ollama.com/install.sh | sh ollama pull qwen:4b #启动智能引导算法 python dialogue.py #启动应用 cd ../.. python manage.py runserver ``` ### 功能需求说明 [问题看板](https://gitee.com/jicoder-nwpu/said/board) ### 学习资料 [Django 文档](https://docs.djangoproject.com/zh-hans/5.2/) [一个“本地图书馆”网站 MDN Web Docs](https://developer.mozilla.org/zh-CN/docs/Learn/Server-side/Django/Tutorial_local_library_website) #### 前端 1. 静态界面展示: [django - Template](https://docs.djangoproject.com/en/5.2/#the-template-layer) view层返回的数据,与前端html的交互 2. 发起http请求:[Axios](https://www.axios-http.cn/) 3. [Bootstrap 文档](https://v5.bootcss.com/docs/getting-started/introduction/) 组件模板库[tabler:一个使用bootstrap的模板库](https://www.bootmb.com/themes/tabler/) [tabler 文档](https://docs.tabler.io/ui/layout/navs-tabs) #### 后端 1. 用户请求处理: [django - View](https://docs.djangoproject.com/en/5.2/#the-view-layer) 负责接收客户端请求并处理