From c41028a6159336f5382c5122713b5c4cf88afdfe Mon Sep 17 00:00:00 2001 From: suki-un Date: Mon, 30 Sep 2024 23:36:51 +0800 Subject: [PATCH 1/3] readme-cn --- README-CN.md | 34 ++++++++++++++++++++++++++++++++++ README.md | 3 +++ 2 files changed, 37 insertions(+) create mode 100644 README-CN.md diff --git a/README-CN.md b/README-CN.md new file mode 100644 index 0000000..91400ef --- /dev/null +++ b/README-CN.md @@ -0,0 +1,34 @@ +# 微博舆情分析系统 + +[English Version](./README.md) | [中文版本](#) + +本项目是一个**社交网络舆情分析系统**,旨在通过微博等社交媒体平台的数据,进行舆情的监测、分析和预测。 + +**关键词**:深度学习,网页抓取,全栈开发,自然语言处理(NLP),Transformers,Flask,情感分析,主题分类,数据可视化,实时监测,机器学习 + +## 功能特点 + +- **实时数据采集**:从社交平台抓取并处理数据。 +- **数据清洗与处理**:对收集到的数据进行清洗和处理,以便进行分析。 +- **主题分类**:使用机器学习将帖子和评论分类到相关主题。 +- **情感分析**:检测文本中的情感倾向(正面、中立或负面)。 +- **趋势预测**:基于历史数据预测未来舆情趋势。 + +## 安装与设置 + +1. 安装必要的环境依赖(可选): + + ```bash + conda install --file requirements.txt + ``` + +2. 配置您的 MySQL 数据库: + + - 运行 `createTables.sql` 来设置所需的表。 + - 在程序中修改 MySQL 的相关配置。 + +3. 使用 Flask 启动项目: + + ```bash + python app.py + ``` diff --git a/README.md b/README.md index 84c36ef..1e6ae3f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ # Weibo Public Opinion Analysis System + +[English Version](#) | [中文版本](./README-CN.md) + This project is a **Social Network Public Opinion Analysis System** designed for monitoring, analyzing, and predicting public opinion trends using data from social media platforms such as Weibo. **Keywords**: Deep Learning, Web Scraping, Full-Stack Development, Natural Language Processing (NLP), Transformers, Flask, Sentiment Analysis, Topic Classification, Data Visualization, Real-time Monitoring, Machine Learning From de9d51c875e7943895ef57e76d6751d869904271 Mon Sep 17 00:00:00 2001 From: suki-un Date: Mon, 30 Sep 2024 23:39:04 +0800 Subject: [PATCH 2/3] readme-cn --- README-CN.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README-CN.md b/README-CN.md index 91400ef..f76a659 100644 --- a/README-CN.md +++ b/README-CN.md @@ -1,6 +1,6 @@ # 微博舆情分析系统 -[English Version](./README.md) | [中文版本](#) +[English document](./README.md) | [中文文档](#) 本项目是一个**社交网络舆情分析系统**,旨在通过微博等社交媒体平台的数据,进行舆情的监测、分析和预测。 diff --git a/README.md b/README.md index 1e6ae3f..dc966db 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Weibo Public Opinion Analysis System -[English Version](#) | [中文版本](./README-CN.md) +[English document](#) | [中文文档](./README-CN.md) This project is a **Social Network Public Opinion Analysis System** designed for monitoring, analyzing, and predicting public opinion trends using data from social media platforms such as Weibo. From 8e1635e865811876adecde350f093886a4e03ed4 Mon Sep 17 00:00:00 2001 From: suki-un Date: Mon, 30 Sep 2024 23:43:03 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20index.html?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- views/page/templates/index.html | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/views/page/templates/index.html b/views/page/templates/index.html index 8515143..3f4a51d 100644 --- a/views/page/templates/index.html +++ b/views/page/templates/index.html @@ -1 +1,27 @@ + {% extends 'base_page.html' %} \ No newline at end of file