basic prompt framework
查阅了非常多关于 chatgpt prompt 的框架资料,我目前觉得写得最清晰的是 elavis saravia 的框架,他认为一个 prompt 里需包含以下几个元素:
- instruction(必须): 指令,即你希望模型执行的具体任务。
- context(选填): 背景信息,或者说是上下文信息,这可以引导模型做出更好的反应。
- input data(选填): 输入数据,告知模型需要处理的数据。
- output indicator(选填): 输出指示器,告知模型我们要输出的类型或格式。
只要你按照这个框架写 prompt ,模型返回的结果都不会差。
当然,你在写 prompt 的时候,并不一定要包含所有4个元素,而是可以根据自己的需求排列组合。比如拿前面的几个场景作为例子:
- 推理:instruction context input data
- 信息提取:instruction context input data output indicator
crispe prompt framework
另一个我觉得很不错的 framework 是 的 crispe framework,这个 framework 更加复杂,但完备性会比较高,比较适合用于编写 prompt 模板。crispe 分别代表以下含义:
- cr: capacity and role(能力与角色)。你希望 chatgpt 扮演怎样的角色。
- i: insight(洞察力),背景信息和上下文(坦率说来我觉得用 context 更好)。
- s: statement(指令),你希望 chatgpt 做什么。
- p: personality(个性),你希望 chatgpt 以什么风格或方式回答你。
- e: experiment(尝试),要求 chatgpt 为你提供多个答案。
以下是这几个参数的例子:
step | example |
---|---|
capacity and role | act as an expert on software development on the topic of machine learning frameworks, and an expert blog writer. 把你想象成机器学习框架主题的软件开发专家,以及专业博客作者。 |
insight | the audience for this blog is technical professionals who are interested in learning about the latest advancements in machine learning. 这个博客的读者主要是有兴趣了解机器学习最新进展技术的专业人士。 |
statement | provide a comprehensive overview of the most popular machine learning frameworks, including their strengths and weaknesses. include real-life examples and case studies to illustrate how these frameworks have been successfully used in various industries. 提供最流行的机器学习框架的全面概述,包括它们的优点和缺点。包括现实生活中的例子,和研究案例,以说明这些框架如何在各个行业中成功地被使用。 |
personality | when responding, use a mix of the writing styles of andrej karpathy, francois chollet, jeremy howard, and yann lecun. 在回应时,混合使用 andrej karpathy、francois chollet、jeremy howard 和 yann lecun 的写作风格。 |
experiment | give me multiple different examples. 给我多个不同的例子。 |
未经允许不得转载:凯发k8国际真人 » chatgpt prompt framework