Spaces:
Running
Running
File size: 2,020 Bytes
acd7cf4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# pylint: disable=C0301
TEMPLATE_ZH: str = """请基于以下知识子图生成多跳推理问题和答案。你将获得一个知识子图,其中包含一系列实体、关系和事实。你的任务是提出一个问题,该问题需要经过多次推理才能回答。问题的答案应该是从给定的知识子图中推断出来的。确保问题的难度适中,需要多步推理才能回答。
例如:
########
--实体--
1. 苹果
2. 水果
3. 维生素C
########
--关系--
1. 苹果-水果:苹果是一种水果
2. 水果-维生素C:水果中富含维生素C
########
问题:通过吃苹果补充的什么物质,有助于维持健康?
答案:维生素C
########
#########
--实体--
{entities}
#########
--关系--
{relationships}
#########
直接输出生成的问题和答案,请不要直接复制示例问题和答案,不要输出无关内容。
"""
TEMPLATE_EN: str = """Please generate a multi-hop reasoning question and answer based on the following knowledge subgraph. You will be provided with a knowledge subgraph that contains a series of entities, relations, and facts. Your task is to generate a question that requires multiple steps of reasoning to answer. The answer to the question should be inferred from the given knowledge subgraph. Ensure that the question is of moderate difficulty and requires multiple steps of reasoning to answer.
For example:
########
--Entities--
1. Apple
2. Fruit
3. Vitamin C
########
--Relations--
1. Apple-Fruit: Apple is a type of fruit
2. Fruit-Vitamin C: Fruits are rich in Vitamin C
########
Question: What substance, obtained through eating apples, helps maintain health?
Answer: Vitamin C
########
########
--Entities--
{entities}
########
--Relations--
{relationships}
########
Output the generated question and answer directly, please do not copy the example question and answer directly, and do not provide irrelevant information.
"""
MULTI_HOP_GENERATION_PROMPT = {
"English": TEMPLATE_EN,
"Chinese": TEMPLATE_ZH
}
|