input
stringlengths
3.65k
3.82k
output
sequencelengths
1
1
id
stringlengths
40
40
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If one of the machines has a red cross on it. Output:
[ "#1 return machines \n#2 return cross \n#3 return #2 that is red \n#4 return #1 that has #3 on it \n#5 return number of #4 \n#6 return if #5 is equal to one" ]
task176-7a7e3d7622e94fd69b9e96a00887a21b
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What is the number of brown objects? Output:
[ "#1 return objects \n#2 return #1 that are brown \n#3 return number of #2" ]
task176-702d91dc2d644de48b730df0a43d6663
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: How many second half touchdowns did Bradford throw? Output:
[ "#1 return Bradford \n#2 return touchdown throws of #1 \n#3 return #2 in the second half \n#4 return number of #3" ]
task176-66d1de63ab5141e78eade1e0a752b0d8
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What is the color of the tiny matte sphere? Output:
[ "#1 return matte sphere \n#2 return #1 that is tiny \n#3 return color of #2" ]
task176-47e3e121d512426b8f1c6892ac12e0ce
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What material is seen the most? Output:
[ "#1 return material \n#2 return #1 that is seen the most" ]
task176-da9c3a22d8bf4dd3b456381887bf1871
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: How many more births per 1000 inhabitants if Italy have over Rome? Output:
[ "#1 return Italy \n#2 return Rome \n#3 return births per 1000 inhabitants of #1 \n#4 return births per 1000 inhabitants of #2 \n#5 return the difference of #3 and #4" ]
task176-b4384a2b4b6a42839919b32559d51f41
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: which sea lies between russia and turkey? Output:
[ "#1 return russia \n#2 return turkey \n#3 return sea between #1 and #2" ]
task176-916145af07094796b31c82676a12cea7
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: How many yards longer was Akers' field goal over Kasay's one? Output:
[ "#1 return Akers \n#2 return field goal of #1 \n#3 return yards of #2 \n#4 return Kasay \n#5 return field goal of #4 \n#6 return yards of #5 \n#7 return difference of #3 and #6" ]
task176-7ba41d4ca4dc4f40a62b3bb601ca93a7
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: what color is the frontmost cylinder? Output:
[ "#1 return cylinder \n#2 return #1 that is frontmost \n#3 return color of #2" ]
task176-1a66de508e2b4aec83060cf6ef6e49c0
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What color is the largest sphere? Output:
[ "#1 return sphere \n#2 return size of #1 \n#3 return #1 where #2 is highest \n#4 return color of #3" ]
task176-6d1ccffad66c41d69f1b5665aa01022e
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: How many touchdown passes did McNabb throw? Output:
[ "#1 return McNabb \n#2 return touchdown passes of #1 \n#3 return number of #2" ]
task176-06cc3f0e04f642ad9ee22d06d8686a29
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What color are both cubes that are side by side? Output:
[ "#1 return cubes \n#2 return #1 that are side by side \n#3 return color of both #2" ]
task176-821bdda7db604ebdb5768e661e9c31e4
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: How many yards difference are there between the top two longest field goals? Output:
[ "#1 return field goals \n#2 return yards of #1 \n#3 return longest of #2 \n#4 return #2 besides #3 \n#5 return longest of #4 \n#6 return difference of #3 and #5" ]
task176-d3d9caf5f0a7451fad06a709be5e3f2f
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Which players scored from 22 yards? Output:
[ "#1 return players \n#2 return yards that #1 scored \n#3 return #1 where #2 is equal to 22" ]
task176-df67cc15ac6c43919ccac93bb0d28d7f
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What are the top three apartment types in terms of the average room count? Give me the Output:
[ "#1 return apartment types \n#2 return average room count of #1 \n#3 return #1 where #2 is highest \n#4 return #1 besides #3 \n#5 return #4 where #2 is highest \n#6 return #4 besides #5 \n#7 return #6 where #2 is highest \n#8 return #3 , #5 , #7" ]
task176-ea7a1fc095df4ce3873162a01a71eab2
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Which team scored more points, the Redskins or the Eagles? Output:
[ "#1 return the Redskins \n#2 return the Eagles \n#3 return points of #1 \n#4 return points of #2 \n#5 return sum of #3 \n#6 return sum of #4 \n#7 return which is highest of #5 , #6" ]
task176-4a71640e1e024d47be4e9bdcebc77e9e
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Which actress played the fictional character who was the parent of another character named Sophie Cuckoo? Output:
[ "#1 return the character named Sophie Cuckoo \n#2 return fictional character that was the parent of #1 \n#3 return actress of #2" ]
task176-7e09ec6c194d45de87540bb749abc5e3
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: what is the cost of flights from denver to san francisco Output:
[ "#1 return flights \n#2 return #1 from denver \n#3 return #2 to san francisco \n#4 return costs of #3" ]
task176-106be758095f4725b7c4f8410852794b
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What are the maximum price and score of wines for each year? Output:
[ "#1 return years \n#2 return wines of #1 \n#3 return prices of #2 \n#4 return maximum of #3 for each #1 \n#5 return scores of #2 \n#6 return maximum of #5 for each #1 \n#7 return #4 , #6" ]
task176-0933fe07fd7149de971ac68d077cb342
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If one of the images shows a vase of flowers with one single flower attached to the outside of the vase. Output:
[ "#1 return vase of flowers \n#2 return the outside of #1 \n#3 return flowers \n#4 return #3 attached to #2 \n#5 return number of #4 for each #1 \n#6 return #1 where #5 is equal to one \n#7 return if #6 is in one of the images" ]
task176-df9f5c7f4e594b03a97d0bae8f8e1894
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: List the amount and donor name for the largest amount of donation. Output:
[ "#1 return donations \n#2 return amounts of #1 \n#3 return #1 where #2 is highest \n#4 return amount of #3 \n#5 return donor names of #3 \n#6 return #4 , #5" ]
task176-a4720819f151419388c067207c8811af
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Which player threw more touchdown passes, Carson Palmer or Peyton Manning ? Output:
[ "#1 return Carson Palmer \n#2 return Peyton Manning \n#3 return touchdown passes of #1 \n#4 return touchdown passes of #2 \n#5 return number of #3 \n#6 return number of #4 \n#7 return which is more of #5 , #6" ]
task176-7edb7c3051b5451db88919772dc3c4cd
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If an image shows a sled driver on the right behind a team of dogs facing the camera. Output:
[ "#1 return sled driver \n#2 return team of dogs \n#3 return #1 that is on the right \n#4 return #2 that are facing the camera \n#5 return #3 that is behind #4 \n#6 return if #5 is in an image" ]
task176-44f6b85263f04685921f11c3b6d73fd4
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: list departure times from denver to philadelphia which are later than 10 o'clock and earlier than 2pm Output:
[ "#1 return flights \n#2 return #1 from denver \n#3 return #2 to philadelphia \n#4 return #3 later than 10 o'clock \n#5 return #4 earlier than 2pm \n#6 return the departure time of #5" ]
task176-c6253b9badc04b74bb4c5223421c6de2
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: How many small cyan colored sphere shaped objects are there? Output:
[ "#1 return objects \n#2 return #1 that are sphere shaped \n#3 return #1 that are small \n#4 return #1 in both #2 and #3 \n#5 return #4 that are cyan colored \n#6 return number of #5" ]
task176-43fe3e397b2841809749285a96032fda
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: what is the cheapest flight from denver to pittsburgh Output:
[ "#1 return flights \n#2 return #1 from denver \n#3 return #2 to pittsburgh \n#4 return price of #3 \n#5 return #3 where #4 is the lowest" ]
task176-5721474222e34d22b3ea49c2a074178e
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: what movies did matthau and lemmon appear in together? Output:
[ "#1 return matthau \n#2 return movies of #1 \n#3 return lemmon \n#4 return movies of #3 \n#5 return movies in both #2 and #4" ]
task176-35fc4b26563a4123a09a67f3e35c9f58
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If there are two needles and one spoon. Output:
[ "#1 return needles \n#2 return spoon \n#3 return the number of #1 \n#4 return the number of #2 \n#5 return if #3 is equal to two \n#6 return if #4 is equal to one \n#7 return if both #5 and #6 is true" ]
task176-6d14427541eb49528bff8c21f8ddfec1
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: How many field goals did Elam kick in the second half? Output:
[ "#1 return Elam \n#2 return field goals #1 did kick \n#3 return #2 in the second half \n#4 return the number of #3" ]
task176-7833c0f8305c46ff92b39627dbc636e3
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Which customer, who has made at least one payment, has spent the least money? List his or her first name, last name, and the id. Output:
[ "#1 return customers \n#2 return #1 who has made at least one payment \n#3 return #2 who has spent the least money \n#4 return the first name of #3 \n#5 return the last name of #3 \n#6 return the id of #3 \n#7 return #4 , #5 , #6" ]
task176-c0444aacdc6f4646b1c57f346ca68853
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Give the distinct department ids of departments in which a manager is in charge of 4 or more employees? Output:
[ "#1 return departments \n#2 return managers of #1 \n#3 return employees of #2 \n#4 return number of #3 for each #2 \n#5 return #1 where #4 is 4 or more \n#6 return department ids of #5 \n#7 return distinct #6" ]
task176-41cf397df8994cd796fe6dfe85cb3332
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: How many touchdown receptions did Packers wideouts score? Output:
[ "#1 return Packers \n#2 return wideouts of #1 \n#3 return touchdown receptions of #2 \n#4 return number of #3" ]
task176-bdc6afd92a8b4bd79d99b7f53f2b62df
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What is the shape of the large gold object? Output:
[ "#1 return objects \n#2 return #1 that is gold \n#3 return #2 that is large \n#4 return shape of #3" ]
task176-b8b7aa47778c404380042e719250f6c6
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Is the rubber ball next to a blue cylinder? Output:
[ "#1 return balls \n#2 return #1 that Is rubber \n#3 return cylinders \n#4 return #3 that Is blue \n#5 return Is #2 next to #4" ]
task176-b4c61d08c50a47c5a2af2bb88825e8cf
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What is the name of each camera lens and the number of photos taken by it? Order the result by the count of photos. Output:
[ "#1 return camera lens \n#2 return name of #1 \n#3 return photos taken by #1 \n#4 return number of #3 for each #1 \n#5 return #2 , #4 \n#6 return #5 sorted by #4" ]
task176-efbb8d0c47224407a7d3ed296d6059cc
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If santa-themed red and white attire is included in one image with at least one dog. Output:
[ "#1 return attire \n#2 return #1 that is santa-themed \n#3 return #2 that is red and white \n#4 return images of #3 \n#5 return dogs in #4 \n#6 return number of #5 for each #4 \n#7 return #4 where #6 is at least one \n#8 return number of #7 \n#9 return if #8 is equal to one" ]
task176-fe4ad6bba32d4d0482fe8491806c25a8
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: how many metallic items are there? Output:
[ "#1 return items \n#2 return #1 that are metallic \n#3 return number of #2" ]
task176-dfff58fde3e54a0aa2651e773ef44142
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Which year had signed more PACS, 2003 or 2004? Output:
[ "#1 return PACS signed \n#2 return #1 of year 2003 \n#3 return #1 of year 2004 \n#4 return number of #2 \n#5 return number of #3 \n#6 return which is highest of #4 , #5" ]
task176-37c65b2b841b4a4394d2e722ba0fc089
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: who was the first vice president of india? Output:
[ "#1 return india \n#2 return vice presidents of #1 \n#3 return the first of #2" ]
task176-d78ebf4060084cadac0b149a24190aba
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: There are three shapes that are the same color, what is that color? Output:
[ "#1 return shapes \n#2 return color of #1 \n#3 return number of #1 for each #2 \n#4 return #2 where #3 is three" ]
task176-013b4c169a494b62a4a62c8c42dd53bf
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If the train engine in one of the images is bright red. Output:
[ "#1 return train engine \n#2 return #1 that is bright red \n#3 return if #2 is in one image" ]
task176-ab23b06b047d47be8bed573fef2293fe
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: How many sacks did Detroit have in total? Output:
[ "#1 return Detroit \n#2 return sacks of #1 \n#3 return number of #2" ]
task176-d6ca1130526849d6b6daa2a3602ee2ba
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What city to which Ryanair flies was featured in the work Juno and the Paycock? Output:
[ "#1 return Juno and the Paycock \n#2 return city that was featured in #1 \n#3 return #2 that Ryanair flies to" ]
task176-1a27e4c7a80846e5959f482cfce7fcc3
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Find names of all students who took some course and the course description. Output:
[ "#1 return students \n#2 return #1 who took some course \n#3 return names of #2 \n#4 return courses of #2 \n#5 return descriptions of #4 \n#6 return #3 , #5" ]
task176-f97b4b56719f49c1935ebb811ea79c4c
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: i'm traveling to dallas from philadelphia Output:
[ "#1 return flights \n#2 return #1 from philadelphia \n#3 return #2 to dallas" ]
task176-1dcb6209afc34c238e494d7eb49bb2b6
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What area with a population over 146493 was the capital of ancient Israel? Output:
[ "#1 return ancient Israel \n#2 return capitals of #1 \n#3 return populations of #2 \n#4 return #2 where #3 at least 146493" ]
task176-9881c354710745b192d7c16891f1d9ab
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: continental airlines on saturday from chicago to seattle Output:
[ "#1 return continental airlines \n#2 return #1 on saturday \n#3 return #2 from chicago \n#4 return #3 to seattle" ]
task176-f608334200fd4007929eba81beefcea4
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What color is on more than one objects? Output:
[ "#1 return colors \n#2 return objects with #1 \n#3 return number of #2 for each #1 \n#4 return #1 where #3 is higher than one" ]
task176-9ac63f79d9c94e58ba47f3d89ebf397b
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: what sort of ground transportation is there in washington dc Output:
[ "#1 return ground transportations \n#2 return #1 in washington dc" ]
task176-2a49c9df5f654672b638899f349692aa
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Who was King of Poland second: Wenceslaus II or John of Bohemia? Output:
[ "#1 return Wenceslaus II was King of Poland \n#2 return John of Bohemia was King of Poland \n#3 return when was #1 \n#4 return when was #2 \n#5 return which is highest of #3 , #4" ]
task176-b90d237e0398499f87ae95e084ac71a7
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: what color is dominating in the shapes? Output:
[ "#1 return objects \n#2 return colors of #1 \n#3 return number of #1 for each #2 \n#4 return #2 where #3 is the highest" ]
task176-69e7b2244ac142e189e096437c898c73
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: what is the lowest cost for a one way ticket from boston to washington Output:
[ "#1 return flights \n#2 return #1 from boston \n#3 return #2 to washington \n#4 return #3 that are one way \n#5 return ticket cost of #4 \n#6 return #5 that is the lowest" ]
task176-c50f9eafa6764723b26fd488cceaca36
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: major rivers of new zealand? Output:
[ "#1 return new zealand \n#2 return rivers of #1 \n#3 return #2 that are major" ]
task176-2ad1a58f508c4e01865caae9d99229bd
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What players kicked field goals in the game? Output:
[ "#1 return field goals in the game \n#2 return players of #1" ]
task176-874e3b6f986f47b6847f68726ccbaff0
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: On which days more than one revisions were made on catalogs. Output:
[ "#1 return days \n#2 return catalog revisions made On #1 \n#3 return number of #2 for each #1 \n#4 return #1 where #3 is higher than one" ]
task176-c9ca5cf6525848f1b3f3a06c915f6b54
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: How many points difference is the IQ range in 17-year-old black students? Output:
[ "#1 return 17-year-old black students \n#2 return IQ in points of #1 \n#3 return the highest of #2 \n#4 return the lowest of #2 \n#5 return the difference of #3 and #4" ]
task176-e3dcb65b0a4b42f2ba7aa1918cf79abb
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If in the image to the right, some of the crab's legs are red. Output:
[ "#1 return right image \n#2 return crabs in #1 \n#3 return legs of #2 \n#4 return #2 where #3 are red \n#5 return number of #4 \n#6 return if #5 is at least one" ]
task176-bb61e8c6f6fb47619af736c3a9317439
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What material is the small shiny cylinder infront of the green cylinder? Output:
[ "#1 return cylinders \n#2 return #1 that is small \n#3 return #2 that is shiny \n#4 return #1 that is green \n#5 return #3 infront of #4 \n#6 return material of #5" ]
task176-62cb380a00214f08bfb501141bd3642a
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: how many objects are to the right of the brown cube? Output:
[ "#1 return objects \n#2 return #1 that is brown \n#3 return #2 that is cube \n#4 return #1 that are to the right of #3 \n#5 return number of #4" ]
task176-0d630596d5bc4248a71f3ecbf734651c
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Are any purple spheres visible? Output:
[ "#1 return spheres \n#2 return #1 that are purple \n#3 return #1 that are visible \n#4 return if any #2 are #3" ]
task176-d7ef85842bdb4e0da264ce2676c51ebd
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If the left image shows a bookstore exterior with at least one person in front of it, and the right image shows a bookstore interior full of shelves of books. Output:
[ "#1 return left image \n#2 return bookstore exterior in #1 \n#3 return person in #1 \n#4 return #3 that is in front of #2 \n#5 return number of #4 \n#6 return if #5 is at least one \n#7 return right image \n#8 return bookstore interior in #7 \n#9 return shelves of books in #7 \n#10 return #8 that is full of #9 \n#11 return number of #10 \n#12 return if #11 is at least one \n#13 return if both #6 and #12 are true" ]
task176-1f85af2ca05f45068641593d701c213e
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Find the room number of the rooms which can sit 50 to 100 students and their buildings. Output:
[ "#1 return rooms \n#2 return #1 that sit at least 50 students \n#3 return #1 that sit at most 100 students \n#4 return #1 in both #2 and #3 \n#5 return room number of #4 \n#6 return buildings of #4 \n#7 return #5 , #6" ]
task176-2e6cdfdcee844ec1938c7ad4cd9b6c9b
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: How many War Areas attacked the Japanese Army? Output:
[ "#1 return War Areas \n#2 return #1 that attacked the Japanese Army \n#3 return number of #2" ]
task176-a1fc9d00da3c4cd7a4cb30b17767083e
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If there are only two monkeys. Output:
[ "#1 return monkeys \n#2 return number of #1 \n#3 return if #2 is equal to two" ]
task176-8c1cb3381b154ea0ad920ad2b79e7aba
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If three people are modeling graduation attire in one of the images. Output:
[ "#1 return people \n#2 return graduation attire \n#3 return #1 that are modeling #2 \n#4 return images \n#5 return number of #3 for each #4 \n#6 return #4 where #5 is equal to three \n#7 return number of #6 \n#8 return if #7 is equal to one" ]
task176-36e4fa71d4534e4789e279abaa4c004e
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What color is the object with a medium height? Output:
[ "#1 return objects \n#2 return heights of #1 \n#3 return #1 where #2 is medium \n#4 return color of #3" ]
task176-4042bc0dbd3047d4b6237413c9576d7e
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If one image features an orange shoe with a gray sole. Output:
[ "#1 return shoe \n#2 return #1 that is orange \n#3 return sole of #2 \n#4 return #2 where #3 is gray \n#5 return if #4 is in one image" ]
task176-4738d15d44c24a0393a5e91eff186ce4
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: when did the tony romo start playing with the cowboys? Output:
[ "#1 return tony romo starts playing with the cowboys \n#2 return date of #1" ]
task176-cc4ff10470e240c0bbf0edc39a686709
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If three instruments lie in a row in one of the images. Output:
[ "#1 return one image \n#2 return instruments in #1 \n#3 return #2 in a row \n#4 return the number of #3 \n#5 return If #4 is equal to three" ]
task176-3cd882c1e1304b1d840382b9dddab8ec
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: i'd like to fly from boston to san francisco Output:
[ "#1 return flights \n#2 return #1 from boston \n#3 return #2 to san francisco" ]
task176-54250bc7ce4a4475b2cb6453cf3e3961
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What is the only repeating color in this image? Output:
[ "#1 return colors \n#2 return #1 that is repeating" ]
task176-27dc44c4336541b889694e80fc69e902
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Are there more green objects than tiny cylinders? Output:
[ "#1 return objects \n#2 return #1 that are green \n#3 return number of #2 \n#4 return cylinders \n#5 return #4 that are tiny \n#6 return number of #5 \n#7 return if #3 is higher than #6" ]
task176-93535c71ce4a456e80d4af336ac5ff83
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If a woman and bald man are wearing gloves together in at least one of the images. Output:
[ "#1 return woman \n#2 return man \n#3 return #2 that is bald \n#4 return gloves \n#5 return #1 wearing #4 \n#6 return #3 wearing #4 \n#7 return #5 , #6 \n#8 return if #7 is in at least one of the images" ]
task176-493c43efb3a143268c24d9ebe9ce2eff
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What did Vesey do for a living? Output:
[ "#1 return Vesey \n#2 return what did #1 do \n#3 return #2 for a living" ]
task176-e2316612796b477fbec9a2a59a88e242
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: How many 2-yard touchdown passes were in the game? Output:
[ "#1 return touchdown passes in the game \n#2 return #1 that were 2-yard \n#3 return number of #2" ]
task176-d94d279a109e40efbaae4b5a658216eb
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If in the left image, both water buffalo have all four feet on the ground and their horns are locked. Output:
[ "#1 return the left image \n#2 return water buffalo in #1 \n#3 return all four feet of #2 \n#4 return the ground \n#5 return #2 where #3 are on #4 \n#6 return horns of #5 \n#7 return #5 where #6 are locked \n#8 return number of #7 \n#9 return if #8 is equal to two" ]
task176-1e123c3209de4cbca4850a7cad4fab12
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: what is the closest object? Output:
[ "#1 return objects \n#2 return #1 that is the closest" ]
task176-91d8a9bd86d042589f1fc5807be77507
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Is the purple cube the same material as the red cube? Output:
[ "#1 return the red cube \n#2 return the purple cube \n#3 return the material of #1 \n#4 return the material of #2 \n#5 return if #4 is the same as #3" ]
task176-40afd4a6ef9b41708446d695bf95ff34
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If a cheetah is grabbing its prey from behind in the left image. Output:
[ "#1 return cheetah \n#2 return prey of #1 \n#3 return #1 grabbing #2 from behind \n#4 return if #3 is in the left image" ]
task176-d1b570f23b8948bf84183bf1a1c4e1c1
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Are all of the objects the same size and shape? Output:
[ "#1 return objects \n#2 return sizes of #1 \n#3 return shapes of #1 \n#4 return #1 where #2 are the same \n#5 return #1 where #3 are the same \n#6 return if all #1 are in both #4 and #5" ]
task176-ab41337373b54e2186ca5dacadbb6bc5
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What is the average number of hosts for parties? Output:
[ "#1 return parties \n#2 return number of hosts for #1 \n#3 return average #2" ]
task176-3b2b100d8fbc42c99646571260b456e5
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: How many total touchdown passes were thrown? Output:
[ "#1 return touchdown passes \n#2 return number of #1" ]
task176-5e6220d75fba46f68147d18bd69e7c45
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If the clown fish in the left and right images face toward each other. Output:
[ "#1 return the left image \n#2 return the right image \n#3 return clown fish in #1 \n#4 return clown fish in #2 \n#5 return if #3 face toward #4 \n#6 return if #4 face toward #3 \n#7 return if both #5 and #6 are true" ]
task176-062f1d3103ab4f33b3be3fb682da7137
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If all elephants are headed in the same direction. Output:
[ "#1 return elephants \n#2 return directions headed in of #1 \n#3 return if #2 are all the same" ]
task176-b9b5bd26b81a4eb59c209dee00b8591b
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Is the blue ball next to the small metallic purple cube? Output:
[ "#1 return the small metallic purple cube \n#2 return the blue ball \n#3 return if #2 is next to #1" ]
task176-24abd57896f54d5f8bd2986749b0d3ed
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What color ball is half hidden by the blue block? Output:
[ "#1 return balls \n#2 return blue block \n#3 return #1 half hidden by #2 \n#4 return color of #3" ]
task176-68b5030f63d842f3b384830d9694548d
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Are any objects shiny purple? Output:
[ "#1 return objects \n#2 return #1 that are shiny \n#3 return if any #2 are purple" ]
task176-57668b0a1ea141ffaf888aa6b5aaf75d
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Which player scored more field goals, Nate Kaeding or Stephen Gostkowski? Output:
[ "#1 return Nate Kaeding \n#2 return Stephen Gostkowski \n#3 return field goals of #1 \n#4 return field goals of #2 \n#5 return number of #3 \n#6 return number of #4 \n#7 return which is more of #5 , #6" ]
task176-e95e13162c3d4f8ead30a0e206264ad6
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: What are the areas and counties for all appelations? Output:
[ "#1 return appelations \n#2 return areas of #1 \n#3 return counties of #1 \n#4 return #2 , #3" ]
task176-9bb931d7ae814bc1bbc895676a41257e
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: In the movie featuring Rebecca Jackson Mendoza, who voiced Darth Vader's character? Output:
[ "#1 return Rebecca Jackson Mendoza \n#2 return movie of #1 \n#3 return characters of #2 \n#4 return #3 that is Darth Vader \n#5 return who voiced #4" ]
task176-a6233d9b6854469a94e0a53928d7fead
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: How many field goals did Hartley miss? Output:
[ "#1 return Hartley \n#2 return field goals of #1 \n#3 return #2 that did miss \n#4 return number of #3" ]
task176-d5df0f57bf76479ca5249afff39c9bbe
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Where was Byron Leftwich born and where Kennedy gave his inaugural address? Output:
[ "#1 return Byron Leftwich \n#2 return where was #1 born \n#3 return Kennedy \n#4 return inaugural address of #3 \n#5 return where was #4 \n#6 return where are both #2 and #5" ]
task176-d3e478847de74fb78043ea8f00ac8292
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: How many years did Russia dominate the region? Output:
[ "#1 return Russia dominates the region \n#2 return years of #1 \n#3 return number of #2" ]
task176-4ffffbec0d4844739766e0b0c660e0d4
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: For all directors who have directed more than one movie, what movies have they directed and what are their names? Output:
[ "#1 return directors \n#2 return movies of #1 \n#3 return number of #2 for each #1 \n#4 return #1 where #3 is more than one \n#5 return movies of #4 \n#6 return names of #4 \n#7 return #5 , #6" ]
task176-a1d537e20b2f4c60826afc7bb0493b89
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: How many colors are duplicated among the cylinders and spheres? Output:
[ "#1 return cylinders \n#2 return colors of #1 \n#3 return spheres \n#4 return colors of #3 \n#5 return colors in both #2 and #4 \n#6 return number of #5" ]
task176-d96ec26e531440f49ac174d99f88d150
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: If one image contains more than one dog. Output:
[ "#1 return images \n#2 return dogs in #1 \n#3 return number of #2 for each #1 \n#4 return #1 where #3 is higher than one \n#5 return number of #4 \n#6 return if #5 is equal to one" ]
task176-51258c7e4a1140f0b51340e30b60de2c
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Where there fewer females or males in the adult population? Output:
[ "#1 return the adult population \n#2 return females in #1 \n#3 return males in #1 \n#4 return number of #2 \n#5 return number of #3 \n#6 return which is lowest of #4 , #5" ]
task176-26934356054b4fa8a3707ce94e32823d
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: List all the distinct product names ordered by product id? Output:
[ "#1 return products \n#2 return product names of #1 \n#3 return distinct #2 \n#4 return product ids of #1 \n#5 return #3 sorted by #4" ]
task176-d579f86c2665450f995af4397398ab3e
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: Which language is spoken in Gull Dong's country of origin? Output:
[ "#1 return Gull Dong \n#2 return country of origin of #1 \n#3 return spoken language of #2" ]
task176-fbe22036a5ab4d8f93a47a6231aaefb4
Definition: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Positive Example 1 - Input: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Output: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Positive Example 2 - Input: question: i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon Output: #1 return flights #2 return #1 from baltimore #3 return #2 to atlanta #4 return #3 that arrive before noon #5 return #1 from denver #6 return #5 to atlanta #7 return #6 that arrive before noon #8 return #4 , #7 Negative Example 1 - Input: question: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. Output: #1 return american archtects #2 return bridges #3 return sorted by feet length Negative Example 2 - Input: question: What is the average price for a lesson taught by Janessa Sawayn? Output: #1 return price for lessons taught by Janessa Sawayn #2 return the average of #1 Now complete the following example - Input: question: what ground transport is available in charlotte Output:
[ "#1 return ground transport \n#2 return #1 in charlotte" ]
task176-0841e4a6689a410ba4c0d26ad89b53e7