From 88eb749154eee31db29ce258ed1777ad70c63b65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=8E=E9=9B=B6=E5=BC=80=E5=A7=8B=E5=AD=A6AI?= <329730566@qq.com> Date: Mon, 15 Apr 2024 16:15:20 +0800 Subject: [PATCH] [doc] Create README-zh.md --- README-zh.md | 146 +++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 2 + 2 files changed, 148 insertions(+) create mode 100644 README-zh.md diff --git a/README-zh.md b/README-zh.md new file mode 100644 index 00000000..22e44b99 --- /dev/null +++ b/README-zh.md @@ -0,0 +1,146 @@ +[English](README.md) | [中文](README-zh.md) + +# STORM: 通过检索和多角度提问合成主题概要 + +该存储库包含我们的NAACL 2024论文《使用大型语言模型协助从零开始撰写类似维基百科的文章》的代码,作者是Yijia Shao、Yucheng Jiang、Theodore A. Kanell、Peter Xu、Omar Khattab和Monica S. Lam。 + +## 概述 [(立即尝试STORM!)](https://storm.genie.stanford.edu/) + +![overview](assets/overview.png) + +STORM是一个基于互联网搜索的LLM系统,可以从零开始撰写类似维基百科的文章。 + +虽然该系统无法生成出版就绪的文章,因为通常需要大量编辑,但经验丰富的维基百科编辑发现在他们的写作前阶段使用它非常有帮助。 + +**请尝试我们的[在线演示](https://storm.genie.stanford.edu/),看看STORM如何帮助您的知识探索之旅,并提供反馈帮助我们改进系统 🙏!** + +## 写作前的研究 + +STORM将生成带有引用的长篇文章分解为两个步骤: + +1. **写作前阶段**:系统进行基于互联网的研究,收集参考资料并生成大纲。 +2. **写作阶段**:系统利用大纲和参考资料生成带有引用的完整文章。 + +![two_stages](assets/two_stages.jpg) + +STORM确定自动化研究过程的核心是自动生成良好的问题。直接提示语言模型提问并不奏效。为了提高问题的深度和广度,STORM采用了两种策略: +1. **透视指导下的提问**:给定输入主题,STORM通过调查类似主题的现有文章发现不同的视角,并用它们来控制提问过程。 +2. **模拟对话**:STORM模拟了一场基于互联网来源的维基百科作者与主题专家之间的对话,以使语言模型能够更新其对主题的理解并提出跟进问题。 + +基于两个阶段的分离,STORM以高度模块化的方式实现(参见[src/engine.py](src/engine.py)),使用了[dspy](https://github.com/stanfordnlp/dspy)。 + +## 设置 + +**我们将STORM视为自动化知识整理的一个示例。我们正在努力增强我们的代码库以增加其可扩展性。敬请关注!** + +下面,我们提供一个快速开始指南,以在本地运行STORM以重现我们的实验。 + +1. 安装所需的包。 + ```shell + conda create -n storm python=3.11 + conda activate storm + pip install -r requirements.txt + ``` +2. 设置OpenAI API密钥和[You.com搜索API](https://api.you.com/)密钥。在根目录下创建一个名为`secrets.toml`的文件,并添加以下内容: + ```shell + # 设置OpenAI API密钥。 + OPENAI_API_KEY= + # 如果您使用OpenAI提供的API服务,请包括以下行: + OPENAI_API_TYPE="openai" + # 如果您使用Microsoft Azure提供的API服务,请包括以下行: + OPENAI_API_TYPE="azure" + AZURE_API_BASE= + AZURE_API_VERSION= + # 设置You.com搜索API密钥。 + YDC_API_KEY= + ``` + +## 论文实验 + +我们实验中使用的FreshWiki数据集可以在[FreshWiki](FreshWiki)中找到。 + +在[./src](src)目录下运行以下命令。 + +### 写作前阶段 + +针对FreshWiki数据集的批量实验: +```shell +python -m scripts.run_prewriting --input-source file --input-path ../FreshWiki/topic_list.csv --engine gpt-4 --do-research --max-conv-turn 5 --max-perspective 5 +``` +- `--engine` (choices=[`gpt-4`, `gpt-35-turbo`]):用于生成大纲的LLM引擎 +- `--do-research`:如果为True,则模拟对话以研究主题;否则,加载结果。 +- `--max-conv-turn`:每个信息寻求对话的最大问题数量 +- `--max-perspective`:要考虑的最大透视数量,每个透视对应一个信息寻求对话。 + - STORM还使用一般对话收集有关主题的基本信息。因此,QA对的最大数量为`max_turn * (max_perspective + 1)`。 :bulb: 减少`max_turn`或`max_perspective`可以加快过程速度并降低成本,但可能导致大纲不够全面。 + - 如果设置了`--disable-perspective`(禁用透视驱动的问题提问),则该参数将不会起作用。 + +要在单个主题上运行实验: +```shell +python -m scripts.run_prewriting --input-source console --engine gpt-4 --max-conv-turn 5 --max-perspective 5 --do-research +``` +- 该脚本会要求您输入`Topic`和要排除的`Ground truth url`。如果您没有要排除的URL,请将该字段留空。 + +生成的大纲将保存在`{output_dir}/{topic}/storm_gen_outline.txt`中,收集的参考资料将保存在`{output_dir}/{topic}/raw_search_results.json`中。 + +### 写作阶段 + +针对FreshWiki数据集的批量实验: +```shell +python -m scripts.run_writing --input-source file --input-path ../FreshWiki/topic_list.csv --engine gpt-4 --do-polish-article --remove-duplicate +``` +- `--do-polish-article`:如果为True,则通过添加摘要部分并在`--remove-duplicate`设置为True时删除重复内容来润色文章。 + +要在单个主题上运行实验: +```shell +python -m scripts.run_writing --input-source console --engine gpt-4 --do-polish-article --remove-duplicate +``` +- 该脚本会要求您输入`Topic`。请输入与写作前阶段使用的主题相同的主题。 + +生成的文章将保存在`{output_dir}/{topic}/storm_gen_article.txt`中,与引用索引对应的参考资料将保存在`{output_dir}/{topic}/url_to_info.json`中。如果设置了`--do-polish-article`,则润色后的文章将保存在`{output_dir}/{topic}/storm_gen_article_polished.txt`中。 + +## 自定义STORM配置 + +我们在[src/modules/utils.py](src/modules/utils.py)的`LLMConfigs`中设置了默认的LLM配置。您可以使用`set_conv_simulator_lm()`、`set_question_asker_lm()`、`set_outline_gen_lm()`、`set_article_gen_lm()`、`set_article_polish_lm()`来覆盖默认配置。这些函数接受来自`dspy.dsp.LM`或`dspy.dsp.HFModel`的实例。 + +💡 **良好的实践建议,** +- 为`conv_simulator_lm`选择一个更便宜/更快的模型,用于在对话中拆分查询、合成答案。 +- 如果您需要进行实际的写作步骤,请为`article_gen_lm`选择一个更强大的模型。根据我们的实验,性能较差的模型在生成带有引用的文本方面表现不佳。 + +## 自动评估 + +在我们的论文中,我们将评估分为两个部分:大纲质量和完整文章质量。 + +### 大纲质量 +我们引入了*标题软回溯*和*标题实体回溯*来评估大纲质量。这使得原型化写作前方法变得更加容易。 + +在[./eval](eval)目录下运行以下命令,对FreshWiki数据集计算指标: +```shell +python eval_outline_quality.py --input-path ../FreshWiki/topic_list.csv --gt-dir ../FreshWiki --pred-dir ../results --pred-file-name storm_gen_outline.txt --result-output-path ../results/storm_outline_quality.csv +``` + +### 完整文章质量 +[eval/eval_article_quality.py](eval/eval_article_quality.py) 提供了评估完整文章质量的入口点,使用ROUGE、实体回溯和评分标准来评估。在`eval`目录下运行以下命令计算指标: +```shell +python eval_article_quality.py --input-path ../FreshWiki/topic_list.csv --gt-dir ../FreshWiki --pred-dir ../results --gt-dir ../FreshWiki --output-dir ../results/storm_article_eval_results --pred-file-name storm_gen_article_polished.txt +``` + +### 自行使用指标 +基于相似度的指标(例如ROUGE、实体回溯和标题实体回溯)的实现在[eval/metrics.py](eval/metrics.py)中。 + +对于评分标准,我们使用了[这篇论文](https://arxiv.org/abs/2310.08491)中介绍的[prometheus-13b-v1.0](https://huggingface.co/kaist-ai/prometheus-13b-v1.0)。[eval/evaluation_prometheus.py](eval/evaluation_prometheus.py) 提供了使用该指标的入口点。 + +## 贡献 +如果您有任何问题或建议,请随时提出问题或提交请求。我们欢迎贡献以改进系统和代码库! + +联系人:[Yijia Shao](mailto:shaoyj@stanford.edu) 和 [Yucheng Jiang](mailto:yuchengj@stanford.edu) + +## 引用 +如果您在工作中使用了这段代码或其中的一部分,请引用我们的论文: +```bibtex +@inproceedings{shao2024assisting, + title={{Assisting in Writing Wikipedia-like Articles From Scratch with Large Language Models}}, + author={Yijia Shao and Yucheng Jiang and Theodore A. Kanell and Peter Xu and Omar Khattab and Monica S. Lam}, + year={2024}, + booktitle={Proceedings of the 2024 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers)} +} +``` diff --git a/README.md b/README.md index f8803411..017abe86 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[English](README.md) | [中文](README-zh.md) + # STORM: Synthesis of Topic Outlines through Retrieval and Multi-perspective Question Asking This repository contains the code for our NAACL 2024 paper [Assisting in Writing Wikipedia-like Articles From Scratch with Large Language Models](https://arxiv.org/abs/2402.14207) by [Yijia Shao](https://cs.stanford.edu/~shaoyj), [Yucheng Jiang](https://yucheng-jiang.github.io/), Theodore A. Kanell, Peter Xu, [Omar Khattab](https://omarkhattab.com/), and [Monica S. Lam](https://suif.stanford.edu/~lam/).