pip install python-docx PyPDF2
python-docx: 处理Word文件PyPDF2: 处理PDF文件支持格式:.docx, .pdf, .txt
将论文文件放入skill目录,或直接提供文件路径。
python scripts/check_paper.py --file <论文文件路径> --check both
参数说明:
--check similarity - 仅查重--check ai - 仅AI率检测--check both - 查重+AI率(默认)检测完成后,报告保存在 output/ 目录:
output/_report_<时间戳>.json - 详细JSON报告output/_report_<时间戳>.md - 可读Markdown报告python scripts/reduce_similarity.py --file <论文文件路径>
降重方法:
paraphrasing - 改写换表达(默认)synonym - 同义词替换restructure - 句式调整python scripts/reduce_ai.py --file <论文文件路径>
处理强度:
light - 轻度normal - 常规(默认)strong - 强力判断逻辑:
检测以下AI特征:
# 论文检测报告
## 基本信息
- 文件:example.docx
- 检测时间:2024-01-01 12:00
## 查重结果
- 总重复率:15%
- 字数:5000
- 词汇多样性:65%
### 可疑重复段落
- 与第3段相似度85%
- 与第5段相似度72%
## AI率检测结果
- AI率:45%
- 字数:5000
### 检测详情
- 过渡词过多: 5 (high)
- 句子过长: 35 (medium)
- 词汇多样性异常: 75% (medium)
共 1 个版本