资源简介:
---
task_categories:
- text-generation
language:
- en
tags:
- sales
size_categories:
- 100K<n<1M
---
# Dataset Card for sales-textbook_for_convincing_and_selling
A textbook create for the purpose of training a sales chatbot.
Inspiration come from: Textbooks is all you need https://arxiv.org/abs/2306.11644
The data was generated by gpt-3.5-turbo
#Structure
A simpel textbook that has subheadlines and headlines.
Chapters and Subheadlines are mentioned in the dataset. Look at the first two examples.
# Data Generation
The following code was used for the text generation:
#include github link
Out of the textbook conversation examples were generated
https://huggingface.co/datasets/goendalf666/sales-conversations
Here is the prompt that was used for the data generation.
For the exact data generation code look up the following repo:
#a structure with headlines and subheadlines was generated before https://github.com/tom813/salesGPT_foundation/blob/main/data_generation/textbook_and_conversation_gen.py
```
prompt = f"""
I want to write a book about sales and convincing techniques. Here is the outline of the chapters:
1. Building Rapport and Capturing Attention
2. Developing Exceptional Communication Skills
3. Discovering Customer Needs and Pain Points
4. Presenting Solutions and Benefits
5. Overcoming Resistance and Objections
6. Closing the Sale
Here is the outline of the current chapter that:
{headline}
Write me a long and detailed text for the subpoint: {subheadline} of the current chapter and only write a text for this subpoint.
Ignore points like body language or tone of voice. Focus on the
Start by mentioning the Chapter and the subpoint.
The overall aim is to write a textbook.
to teach someone with less experience how to convince people and sell stuff.
"""
```
任务类别:文本生成
语言:英语
标签:销售
规模类别:10万 < 样本数 < 100万
# 数据集卡片:sales-textbook_for_convincing_and_selling
本数据集为用于训练销售聊天机器人的销售类教材。
其创作灵感源自论文《Textbooks Is All You Need》(https://arxiv.org/abs/2306.11644)。
数据集内容由GPT-3.5-turbo生成。
# 数据集结构
本数据集采用具备章节标题与子标题的简易教材格式,数据集中包含完整的章节与子标题信息,可参考前两条示例。
# 数据生成流程
文本生成所用代码如下:[包含GitHub链接]
基于本教材生成了对话示例数据集,详见:https://huggingface.co/datasets/goendalf666/sales-conversations。
以下为数据生成所用的提示词模板。完整的数据生成代码可查阅下述代码仓库:
# 预生成结构文件
此前已先生成包含章节标题与子标题的结构文件,详见:https://github.com/tom813/salesGPT_foundation/blob/main/data_generation/textbook_and_conversation_gen.py
prompt = f"""
我计划编写一本关于销售与说服技巧的书籍,以下为全书章节大纲:
1. 建立融洽关系与吸引注意力
2. 锤炼卓越沟通技巧
3. 挖掘客户需求与痛点
4. 呈现解决方案与价值收益
5. 化解抵触情绪与反对意见
6. 促成交易成交
以下为当前章节的大纲:
{headline}
请为当前章节的子主题:{subheadline}撰写一篇详实全面的文本,且仅针对该子主题进行创作。
请勿涉及肢体语言、语气语调等内容,请聚焦于。
请在开篇提及当前章节与子主题。
整体创作目标为编写一本教材,用于向经验不足的从业者传授说服他人与产品销售的方法。
"""