补充readme

This commit is contained in:
root 2021-10-20 12:26:55 +08:00
parent a40f526455
commit c00e7d6759
2 changed files with 20 additions and 0 deletions

View File

@ -1,2 +1,16 @@
# dupPRdetect
## 应用说明
针对Trustie平台的PR
与历史所有PR进行重复检测。
检测内容包括文本描述和文件修改,
根据这两项内容进行综合评分。
`input` 项目PR的URL地址
`output` 与该项目历史所有PR的重复检测结果列表
## 代码结构
本项目采用python的flask框架搭建
`app.py`为主文件,运行时输入`python app.py runserver`。
请在本地创建自己的虚拟环境,根据`requirements.txt`安装依赖包。

6
requirements.txt Normal file
View File

@ -0,0 +1,6 @@
jieba==0.42.1
Flask==0.10.1
tqdm==4.62.3
requests==2.26.0
fuzzywuzzy==0.18.0
numpy==1.21.2